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