cleol
[mcs.git] / tests / test-718.cs
blobcf70d3b2732b61aca0216b1c7412c6fcc8f82d9c
1 using System;
3 class A
5 public static void Foo (int x, int y)
10 sealed class B : A
12 public static void Main ()
14 Foo (1, 2);
17 void Foo (int i)