File: bug-81009.vb

package info (click to toggle)
mono-basic 2.10-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,964 kB
  • sloc: cs: 34,086; xml: 7,804; makefile: 471; sh: 317
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Public Class Test
    Public Shared Function Main() As Integer
        Dim value As Integer
        Dim result As Integer
        result = 1
        Select Case Value
            Case 0
                If True Then
                    result = 0
                    Exit Select
                End If
            Case 1
        End Select
        Return result
    End Function
End Class