Files
cappuccino/Tests/Objective-J/Preprocessor/OutputTests/Messages/self-as-receiver.j
T
2014-06-22 16:07:17 +01:00

18 lines
185 B
Plaintext

@implementation MyClass
- (id)mySelector
{
[self init];
self = nil;
[self init];
}
- (id)mySelector2
{
[self init];
eval("self = null;");
[self init];
}
@end