source: trunk/gcc/libjava/testsuite/libjava.lang/PR8866.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 428 bytes
Line 
1public class PR8866
2{
3 public static void main (String args[])
4 {
5 String attTypeString = "";
6
7 switch (args.length) {
8 case 1:
9 attTypeString = "string";
10 case 4:
11 attTypeString = "ID";;
12 case 5:
13 attTypeString = "IDREF";;
14 case 6:
15 attTypeString = "NMTOKEN";;
16 case 7:
17 attTypeString = "NOTATION";;
18 default:
19 ;
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.