blob: f9d44603a846ec0ccf5deccfab1f807f6c84dc77 [file] [log] [blame]
John McCall32096692011-03-18 02:56:14 +00001// RUN: %clang -mtriple=x86_64-apple-darwin10 -S -mkernel -Xclang -verify %s
2
3// rdar://problem/9143356
4
5int foo();
6void test() {
7 static int y = 0;
8 static int x = foo(); // expected-error {{this initialization requires a guard variable, which the kernel does not support}}
9}