repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[2020-02] Avoid following invalid pointers in mono_w32process_get_modules on Darwin...
[mono-project.git]
/
mono
/
tests
/
t-missing.cs
blob
dbdd53cfc67d292c43de08958f35721947dda489
1
using
System
;
2
3
namespace
Missing
{
4
5
#if FOUND
6
public class
Foo1
{
7
public class
InnerFoo
{}
8
}
9
#endif
10
11
public class
Foo2
{
12
13
public
Foo2
() {
14
}
15
16
#if FOUND
17
public
Foo2
(
int
i
) {
18
}
19
20
public void
missing
() {
21
}
22
23
public static void
static_missing
() {
24
}
25
#endif
26
}
27
28
29
public class
Foo3
{
30
#if FOUND
31
public static int
i
;
32
#endif
33
}
34
35
public class
Foo4
{
36
#if FOUND
37
public int
i
;
38
#endif
39
}
40
41
public class
Foo5
{
42
#if FOUND
43
public virtual void
missing_virtual
() {
44
}
45
#endif
46
}
47
48
#if FOUND
49
public struct
Foo6
{
50
}
51
#endif
52
53
}