repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
objc
/
execute
/
static-2.m
blob
6cdbf5b775bd8e92e5f3b43d9af14fafee77b57c
1
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
2
#include <objc/objc.h>
3
4
/* Test defining a static function *inside* a class implementation */
5
6
@interface Test
7
{
8
Class isa;
9
}
10
+ (int) test;
11
@end
12
13
@implementation Test
14
15
static int test (void)
16
{
17
return 1;
18
}
19
20
+ (int) test
21
{
22
return test ();
23
}
24
25
+ initialize { return self; }
26
@end
27
28
int main (void)
29
{
30
if ([Test test] != 1)
31
{
32
abort ();
33
}
34
35
return 0;
36
}
37
38