blob: 2f1380062d3206782bf89ecdb124acacbc1e909a [file] [log] [blame]
Anders Carlsson1a86b332007-10-17 00:52:43 +00001// RUN: clang -fsyntax-only -verify %s
2static int f = 10;
Chris Lattnerd8803632008-08-10 01:58:45 +00003static int b = f; // expected-error {{initializer element is not a compile-time constant}}
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00004
Chris Lattnerd8803632008-08-10 01:58:45 +00005float r = (float) &r; // expected-error {{initializer element is not a compile-time constant}}
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00006long long s = (long long) &s;
7_Bool t = &t;