Improve test to check for toplevel namespaced delegates
[mono.git] / mcs / tests / test-68.cs
1 //
2 // Tests invocation of reference type functions with value type arguments
3 //
4
5 enum A {
6         Hello
7 }
8
9 class X {
10
11         static int Main ()
12         {
13                 if ("Hello" != A.Hello.ToString ())
14                         return 1;
15
16                 if (5.ToString () != "5")
17                         return 2;
18                 
19                 return 0;
20         }
21 }
22