(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / InterfaceC1.vb
blob786a2cd767b5ab2de1439f34ea0938ef6b24886c
1 REM LineNo: 18
2 REM ExpectedError: BC30375
3 REM ErrorMessage: 'New' cannot be used on an interface.
5 Interface I
6 Function F()
7 End Interface
9 Class C
10 Implements I
12 Function F() Implements I.F
13 End Function
14 End Class
16 Module InterfaceC1
17 Sub Main()
18 Dim x As I = New I()
19 End Sub
20 End Module