1Imports System.IO
2
3Class LessGeneric1
4    Shared Function Main() As Integer
5        Return a(CUShort(1))
6    End Function
7    Shared Function A(ByVal i As Integer) As Integer
8        Return 0
9    End Function
10    Shared Function A(ByVal i As ULong) As Integer
11        Return 1
12    End Function
13End Class
14