Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-377.cs
1 // Compiler options: -r:test-377-lib.dll
2
3 using System;
4 using System.Reflection;
5
6 public class Tests {
7
8         public void test () {
9                 Foo f = null;
10                 f.foo (5);
11         }
12         
13         public static void Main () {}
14 }