repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Revert "[ELF] Refine isExported/isPreemptible condition"
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
real-definition
/
main.m
blob
8c31dc9abb316de9d8a67ec8f6851f99c3e12a34
1
#include <stdio.h>
2
#include <stdint.h>
3
#import <Foundation/Foundation.h>
4
#import "Foo.h"
5
6
int main (int argc, char const *argv[])
7
{
8
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9
Foo *foo = [[Foo alloc] init];
10
NSLog (@"foo is %@", foo); // Set breakpoint in main
11
[pool release];
12
return 0;
13
}