2004-06-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / ShadowsC.vb
1 Interface ILeft
2     Sub F()
3 End Interface
4
5 Interface IRight
6     Sub F()
7 End Interface
8
9 Interface ILeftRight
10     Inherits ILeft, IRight
11     Shadows Sub F()
12 End Interface
13 \r
14 \r
15 Module ShadowsC\r
16     Sub Main()\r
17     End Sub\r
18 End Module\r