summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaObjCXX/fragile-abi-object-assign.m
blob: 953db6bbc06d3f6e5bd7308941771ea340f5ce83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-fragile-abi -verify %s
// rdar://10731065

@interface MyView {}
@end

@implementation MyViewTemplate // expected-warning {{cannot find interface declaration for 'MyViewTemplate'}}
- (id) createRealObject {
  id realObj;
  *(MyView *) realObj = *(MyView *) self; // expected-error {{cannot assign to class object}}
}
@end

OpenPOWER on IntegriCloud