(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / InterfaceB.vb
blob339c04b9d1536fb7abf7036fb7b3eb7abcf69507
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 End Interface
13 Class LeftRight
14 Implements ILeftRight
16 Sub LeftF() Implements ILeft.F
17 End Sub
19 Sub RightF() Implements IRight.F
20 End Sub
21 End Class
23 Module InterfaceB
24 Sub main()
25 Dim lr As New LeftRight()
26 lr.LeftF()
27 lr.RightF()
28 End Sub
29 End Module