Fariborz Jahanian | 7b383e4 | 2012-01-24 18:05:45 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin11 -fsyntax-only -fobjc-fragile-abi -verify %s |
2 | // rdar://10731065 | ||||
3 | |||||
4 | @interface MyView {} | ||||
5 | @end | ||||
6 | |||||
7 | @implementation MyViewTemplate // expected-warning {{cannot find interface declaration for 'MyViewTemplate'}} | ||||
8 | - (id) createRealObject { | ||||
9 | id realObj; | ||||
10 | *(MyView *) realObj = *(MyView *) self; // expected-error {{cannot assign to class object - use memcpy instead}} | ||||
11 | } | ||||
12 | @end | ||||
13 |