2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
2008-08-05 14:19:09 +08:00
|
|
|
|
|
|
|
// rdar://6124613
|
|
|
|
void test1() {
|
|
|
|
void *p = @1; // expected-error {{unexpected '@' in program}}
|
|
|
|
}
|
|
|
|
|
2010-03-19 05:23:08 +08:00
|
|
|
// <rdar://problem/7495713>
|
|
|
|
// This previously triggered a crash because the class has not been defined.
|
|
|
|
@implementation RDar7495713 (rdar_7495713_cat) // expected-error{{cannot find interface declaration for 'RDar7495713'}}
|
|
|
|
- (id) rdar_7495713 {
|
2010-09-20 07:03:35 +08:00
|
|
|
__PRETTY_FUNCTION__; // expected-warning{{expression result unused}}
|
2010-03-19 05:23:08 +08:00
|
|
|
}
|
|
|
|
@end
|
2010-04-21 05:21:51 +08:00
|
|
|
|
|
|
|
// <rdar://problem/7881045>
|
|
|
|
// This previously triggered a crash because a ';' was expected after the @throw statement.
|
|
|
|
void foo() {
|
|
|
|
@throw (id)0 // expected-error{{expected ';' after @throw}}
|
|
|
|
}
|
|
|
|
|