(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ShadowsC.vb
blobebc25c50ae06f1cfb54b2a3b6bfcab28098b9f00
1 Interface ILeft
2 Sub F()
3 End Interface
5 Interface IRight
6 Sub F()
7 End Interface
9 Interface ILeftRight
10 Inherits ILeft, IRight
11 Shadows Sub F()
12 End Interface
15 Module ShadowsC
16 Sub Main()
17 End Sub
18 End Module