[System] Throw PlatformNotSupportedException if NetworkInformation.NetworkChange...
[mono-project.git] / mcs / tests / test-622.cs
blob8ff008d257d6adde58d0c0eace6590da5f2e68af
1 struct A
3 public A (int a)
8 class B
10 public B (int a)
15 class X {
16 static void Foo (out A value)
18 value = new A (1);
21 static void Foo (out object value)
23 value = new B (1);
26 public static int Main ()
28 A o;
29 Foo (out o);
31 object b;
32 Foo (out b);
34 return 0;