blob: 26b0d14b34d60d7f2b8af927e0b3781f45f11801 [file] [log] [blame]
Matt Beaumont-Gay90e23202011-03-22 00:19:31 +00001// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -S -o %t.s -mkernel -Xclang -verify %s
John McCall32096692011-03-18 02:56:14 +00002
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}