(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / OverloadingC2.vb
blob03397829239f6f7e993169f74101c7e8cd2b2c55
1 REM LineNo: 6
2 REM ExpectedError: BC30345
3 REM ErrorMessage: 'Public Function f(ByRef i As Integer) As Object' and 'Public Function f(i1 As Integer) As Object' cannot overload each other because they differ only by parameters declared 'ByRef' or 'ByVal'.
5 Module OverloadingC2
6 Function f(ByRef i As Integer)
7 End Function
9 Function f(ByVal i1 As Integer)
10 End Function
12 Sub Main()
13 End Sub
14 End Module