(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / ShadowsC4.vb
blob16119b591d04752b353e4c7618c6502a7d1c1699
1 Class B
2 Private Function F()
3 End Function
4 End Class
6 Class D
7 Inherits B
9 Shadows Function F()
10 End Function
11 End Class
13 Module ShadowsC3
14 Sub Main()
15 End Sub
16 End Module