(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / InterfaceH.vb
blob6fe9fe4b117e289c219c62b01bf611f6edaa6126
1 ' In this test all implemented
2 ' member names are different from
3 ' the interface member names
5 Delegate Sub d()
7 Interface I
8 Function F()
9 Sub S (i as integer)
10 Property P
11 Event e (i as integer)
12 Event e1 as d
13 End Interface
15 Class C
16 Implements I
18 Function CF() Implements I.F
19 End Function
21 Sub CS(i as integer) Implements I.S
22 End Sub
24 Sub S1(i as integer)
25 End Sub
28 Property CP Implements I.P
29 Get
30 End Get
31 Set
32 End Set
33 End Property
35 Event Ce(i as integer) Implements I.e
37 Event Ce1 as d implements I.e1
39 End Class
41 Module InterfaceA
42 Sub Main()
43 Dim x As C = New C()
44 x.CF()
46 Dim y As I = New C()
47 y.F()
48 End Sub
49 End Module