(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / OverloadingA.vb
blobf69e15d2481a5fc95b1e77b9e65f79e75dd5b8eb
1 'Testing overloading in different classes
2 Class B
3 Function F()
4 End Function
6 Function F(ByVal i As Integer)
7 End Function
9 Function F1()
10 End Function
12 Function F1(ByVal i As Integer)
13 End Function
14 End Class
16 Class D
17 Inherits B
19 Overloads Function F()
20 End Function
21 End Class
23 Module OverloadingA
24 Sub Main()
25 Dim x As D = New D()
27 x.F()
28 x.F(10)
29 x.F1(20)
31 Dim x1 As B=New B()
32 x1.F(20)
33 x1.F1()
34 End Sub
36 End Module