(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / Event_exe.vb
blob8a2e40a04af62058f06ab09c658bb8314cd94207
1 REM CompilerOptions: /r:Event_dll.dll
3 Imports System
4 Imports NSEvent
6 NameSpace NSEvent
7 Class C1
8 Inherits C
10 Sub call_S()
11 S()
12 End Sub
14 Sub EH(i as Integer, y as string) Handles MyBase.E
15 Console.WriteLine("event-H called")
16 End Sub
17 End Class
19 End NameSpace
21 Module M
22 Sub Main()
23 dim y as new C1 ()
24 y.call_S()
25 End Sub
26 End Module