Merge pull request #3563 from lewurm/interpreter
[mono.git] / mcs / tests / test-661.cs
1 // Compiler options: -r:test-661-lib.dll
2
3 public class Test
4 {
5         public static void Main ()
6         {
7         }
8         
9         public void TestMethod ()
10         {
11                 SummaryInfo s = GetSummary ();
12                 s.set_Property (0, null);
13         }
14
15         static SummaryInfo GetSummary ()
16         {
17                 return null;
18         }
19 }