comparison gcc/testsuite/g++.dg/cpp1y/pr63996.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do compile { target c++14 } }
2
3 constexpr int
4 foo (int i)
5 {
6 int a[i] = { }; // { dg-error "forbids variable length" }
7 }
8
9 constexpr int j = foo (1); // { dg-error "flows off the end" }
10