blob: 2f1380062d3206782bf89ecdb124acacbc1e909a (
plain)
1
2
3
4
5
6
7
|
// RUN: clang -fsyntax-only -verify %s
static int f = 10;
static int b = f; // expected-error {{initializer element is not a compile-time constant}}
float r = (float) &r; // expected-error {{initializer element is not a compile-time constant}}
long long s = (long long) &s;
_Bool t = &t;
|