Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-446.cs
1 class FooTest
2 {
3         public static void Main ()
4         {
5                 Foo (0x0L);
6         }
7
8         static void Foo (ulong l1)
9         {
10         }
11 }
12