Skip to content

Instantly share code, notes, and snippets.

@jablair
Created May 5, 2011 14:37
Show Gist options
  • Save jablair/957151 to your computer and use it in GitHub Desktop.
Save jablair/957151 to your computer and use it in GitHub Desktop.
Appledoc Issue 90 Example
#import <Cocoa/Cocoa.h>
/**
* Class for demoing appledoc name clash bug
*/
@interface NameClashClass : NSObject {
}
/**
* Class method for demonstrating appledoc name clash bug
*/
+ (void)nameClashMethod;
/**
* Instance method for demonstrating appledoc name clash bug
*/
- (void)nameClashMethod;
@end
//
#import "NameClashClass.h"
@implementation NameClashClass
+ (void)nameClashMethod {
}
- (void)nameClashMethod {
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment