Reworded and Reformatted the Readme
[mono.git] / mcs / btests / ConstantB.vb
1 Class A
2         public const c as integer = 10
3 End Class
4
5 Class B
6         Inherits A
7
8         public shadows Const c as integer = 20
9 end class
10
11 Module M
12         Sub Main()
13         End Sub
14 End Module
15