(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ScopeC1.vb
blobbad671803e063b6ebbd8c98063c69a6e0a2d37ce
1 REM LineNo: 18
2 REM ExpectedError: BC30455
3 REM ErrorMessage: Argument not specified for parameter 'i2' of 'Public Shared Function F(i1 As Integer, i2 As Integer) As Object'.
5 Class C1
6 Shared Function F()
7 End Function
9 Shared Function F(ByVal i As Integer)
10 End Function
12 Class C2
13 Shared Function F(ByVal i1 As Integer, ByVal i2 As Integer)
14 End Function
16 Function fnc()
17 F(10, 20)
18 F(10)
19 End Function
21 End Class
22 End Class
26 Module ScopeC1
27 Sub Main()
28 End Sub
29 End Module