copied mono-api-diff.cs from mono-2-2 branch so new patch can be applied and history...
[mono.git] / mono / tests / t-missing.cs
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 public class Foo3 {
29 #if FOUND
30         public static int i;
31 #endif
32 }
33
34 public class Foo4 {
35 #if FOUND
36         public int i;
37 #endif
38 }
39
40 public class Foo5 {
41 #if FOUND
42         public virtual void missing_virtual () {
43         }
44 #endif
45 }
46
47 #if FOUND
48 public struct Foo6 {
49 }
50 #endif  
51
52 }