2011-10-13 03:51:18 +08:00
|
|
|
// RUN: %clang_cc1 %s -verify -fsyntax-only
|
|
|
|
|
|
|
|
int a __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}}
|
|
|
|
|
|
|
|
__attribute__((returns_twice)) void t0(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void t1() __attribute__((returns_twice));
|
|
|
|
|
2013-07-24 03:30:11 +08:00
|
|
|
void t2() __attribute__((returns_twice(2))); // expected-error {{'returns_twice' attribute takes no arguments}}
|
2011-10-13 03:51:18 +08:00
|
|
|
|
|
|
|
typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}}
|