1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 30 31 38 public class Case4 39 { 40 static final int a = 1; 41 static final int b = 2; 42 static final int c = 3; 43 static final int d = 4; 44 static int j = -1; 45 public static void main( String [] args ) 46 { 47 String res = null; 48 switch (j) 49 { 50 case 0: 51 case a: 52 case b: 53 case c: 54 case d: 55 return; 56 } 57 Passed.passed( "Case4" ); 58 } 59 } 60 61 | Popular Tags |