blob: 2439d5e714e5372168f70f2e4460977c80a939fc [file] [log] [blame]
Anders Carlsson1a86b332007-10-17 00:52:43 +00001// RUN: clang -fsyntax-only -verify %s
2static int f = 10;
3static int b = f; // expected-error {{initializer element is not constant}}
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00004
5float r = (float) &r; // expected-error {{initializer element is not constant}}
6long long s = (long long) &s;
7_Bool t = &t;