[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0119-8.cs
blob7b7f14bf72a21406e4565859ce5f54131bcc361d
1 // CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2 // Line: 10
4 class A
6 delegate string Test (string t);
8 public static void Main ()
10 Test ("t");