mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 22:17:03 +00:00
18 lines
185 B
Plaintext
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
|