[System] Add reflection dependency tracking
[mono-project.git] / mcs / tests / gtest-exmethod-36.cs
blob6f5ff146a15c49f3d3be23b3e2fd605150ba3e32
1 using System;
3 class S
5 public string Prop { get { return "5"; } }
8 class S2
10 public bool Prop;
13 static class E
15 public static int Prop (this S s)
17 return 8;
20 public static int Prop (this S2 s)
22 return 18;
26 class C
28 public static void Main ()
30 S s = new S ();
31 int b = s.Prop ();
32 string bb = s.Prop;
34 S2 s2 = new S2 ();
35 int b2 = s2.Prop ();
36 bool bb2 = s2.Prop;