aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/static-lib-deps/d.mm
blob: 5bf48966fd3e33e666e24478790be166be8bb333 (plain)
1
2
3
4
5
6
7
8
#import <Foundation/Foundation.h>

void printGreeting()
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    NSLog (@"Hello darkness, my old friend!");
    [pool drain];
}