Added new files
[mono.git] / mcs / mbas / Test / errors / NotInheritableC4.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2003 Ximian, Inc.
5
6 REM LineNo: 10
7 REM ExpectedError: BC30397
8 REM ErrorMessage: 'NotInheritable' is not valid on an Interface declaration.
9
10 NotInheritable Interface A
11         Sub G()        
12 End Interface
13
14 Module InheritanceN
15         Sub Main()
16         End Sub
17 End Module