blob: 6efb648e7868da60cafeff13a0348a1d23506970 [file] [log] [blame]
Richard Smith84208dc2012-03-13 05:56:40 +00001// RUN: %clang_cc1 -verify %s
2
3// PR11925
4int n;
5int (&f())[n]; // expected-error {{function declaration cannot have variably modified type}}
Richard Smith04d6d2f2014-02-08 02:30:49 +00006
7namespace PR18581 {
8 template<typename T> struct pod {};
9 template<typename T> struct error {
10 typename T::error e; // expected-error {{cannot be used prior to '::'}}
11 };
12 struct incomplete; // expected-note {{forward declaration}}
13
14 void f(int n) {
15 pod<int> a[n];
16 error<int> b[n]; // expected-note {{instantiation}}
17 incomplete c[n]; // expected-error {{incomplete}}
18 }
19}
David Majnemerdf8f73f2015-04-09 19:53:25 +000020
21void pr23151(int (&)[*]) { // expected-error {{variable length array must be bound in function definition}}
22}