зеркало из https://github.com/microsoft/clang-1.git
11 строки
320 B
Objective-C
11 строки
320 B
Objective-C
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
|
|
struct S {
|
|
__weak id p; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
|
|
};
|
|
|
|
int main ()
|
|
{
|
|
__weak id local; // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
|
|
}
|
|
|