Sign in
llvm
/
llvm-archive
/
58b05407658c2569b188facf1d1f15e1c0e95aa4
/
.
/
clang-tests
/
gcc-4_2-testsuite
/
src
/
obj-c++.dg
/
storage-class-neg-1.mm
blob: fc8a28e1a5198097ec0c21f8582c95403c6db987 [
file
] [
log
] [
blame
]
/* APPLE LOCAL file radar 4360010 */
/* Check that illegal usage of storage class 'static' does not ICE. */
/* { dg-do compile { target *-*-darwin* } } */
@interface
Foo
{
static
int
iFoo
;
/* { dg-error "storage class specified" } */
}
@end