Add System.Net.Http to build
[mono-project.git] / mono / tests / t-missing.cs
blobdbdd53cfc67d292c43de08958f35721947dda489
1 using System;
3 namespace Missing {
5 #if FOUND
6 public class Foo1 {
7 public class InnerFoo {}
9 #endif
11 public class Foo2 {
13 public Foo2 () {
16 #if FOUND
17 public Foo2 (int i) {
20 public void missing () {
23 public static void static_missing () {
25 #endif
29 public class Foo3 {
30 #if FOUND
31 public static int i;
32 #endif
35 public class Foo4 {
36 #if FOUND
37 public int i;
38 #endif
41 public class Foo5 {
42 #if FOUND
43 public virtual void missing_virtual () {
45 #endif
48 #if FOUND
49 public struct Foo6 {
51 #endif