mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
21 lines
272 B
Plaintext
21 lines
272 B
Plaintext
// Expected output: 0
|
|
|
|
/*
|
|
|
|
START_EXPECTED
|
|
MyType property1;
|
|
^
|
|
WARNING line 5 in file:[__PATH__]: Unknown type 'MyType' for ivar 'property1'
|
|
END_EXPECTED
|
|
*/
|
|
|
|
|
|
@import <Foundation/CPObject.j>
|
|
|
|
@implementation MyCall : CPObject
|
|
{
|
|
MyType property1;
|
|
}
|
|
|
|
@end
|