Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 77e69f98d73958d4c3827890e254975796d6b578 (plain) (tree)
1
2
3
4
5
6
7
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
                                                                                
                                                       

                                                                        
                                                           

                                            




                                                                                 

                           

                     
                                        
                                            
                                                            

                                                              

                            
                                                      
        

                                                   



                                      
                                                                                    
                                                                                
                
                                                         
                                                  
                                                   
         
                                    
                                                             




                                           
 



                                                                                                
                                                                                                      














                                                                                                                       


































































                                                                                                                       
                                               















                                                                                                                                                    
                                            























                                                                
                                           




















                                                     
                                                   
                                                       








































                                                                                           
                                                                               











































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                   
                                     







































































                                                                                                                                                               
                                         



                                                                                                           
                                         



                                                             
                                         
































                                                                                   
                                         



                                                                              
                                         



                                                                              
                                         



















                                                                                           
                                     












































































                                                                                                 
                                         



                                                                                   
                                         



                                                                                 
                                         



                                                                        
                                         



                                                                     
                                         



                                                                       
                                         



                                                                          
                                         


























                                                                                                 
                                     


                 
 








                                                                  
                                                




                                                                 
                 














                                                                                   
                 














































                                                                         
 





















                                                                                
 








































                                                                               
 








                                          
 




















                                                                  
 







































                                                                                                                                        
        





















                                                                                      
 
























































                                                                                                                                                          




                                                                                
                                                                                     
                 



                                                                    
         





































































































































































































































































































































































































































                                                                                                                                                          




                                                                                
                                                                                     
                 



                                                                    
         

































































































































































































































































































































































































































                                                                                                                                                          
         












































































































































































































































































































































































































































































































                                                                                                                                                          
         






















































































                                                                                                                                        
 









































































































                                                                                                                                                                       







                                                                            










































































                                                                                                                
                                                          



























































































                                                                                                                                             
                                      















                                                                                  

                                                    
                                                           
                          
                               
                  
        
























                                                      
                                      










                                                                                    

                                                    
                                                           
                          
                                 
                  
























                                                      
                                      























                                                                                  

                                                    
                                                           
                          
                                    
                  
        
























                                                      
                                      


















                                                                                  

                                                    
                                                           
                          
                               
                  
        
























                                                                       
                                      





















                                                                                           

                                                    
                                                           
                          
                               
                  
        
























                                                                
                                      

















                                                                                                     

                                                    
                                                           
                          
                               
                  
        
























                                                      
                                      





























                                                                                                     

                                                    
                                                           
                          
                                    
                  
        




















                                                   
 



































































                                                                                                                                
 























































































































































































                                                                                                                                              
                                                           





























































































































































                                                                                                               
                                                                  







































































































































































                                                                                                                                                          

         





                                                                        
         

                                                                                           
         













                                                                                                                                                            
         






                                                                        
         

                                                                     
         









































































                                                                                                                                                          
                                               




















































































                                                                                                                                     
                


                                                                        
         







                                                                                           

                                         

















                                                                                  
                          































































                                                                                                       












































































                                                                                                                                                          




















                                                                                                      

































                                                                           








































































































































                                                                                                       


























                                                                        
 
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.core.tests.compiler.regression;

import java.io.File;
import java.io.IOException;
import java.util.Map;

import org.eclipse.jdt.core.ToolFactory;
import org.eclipse.jdt.core.tests.util.Util;
import org.eclipse.jdt.core.util.ClassFileBytesDisassembler;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;

import junit.framework.Test;

public class EnumTest extends AbstractComparableTest {
	
	String reportMissingJavadocComments = null;

	public EnumTest(String name) {
		super(name);
	}

	// Static initializer to specify tests subset using TESTS_* static variables
	// All specified tests which does not belong to the class are skipped...
	static {
//		TESTS_NAMES = new String[] { "test000" };
//		TESTS_NUMBERS = new int[] { 134 };
//		TESTS_RANGE = new int[] { 21, 50 };
	}
	public static Test suite() {
		return buildComparableTestSuite(testClass());
	}

	public static Class testClass() {  
		return EnumTest.class;
	}

	protected Map getCompilerOptions() {
		Map options = super.getCompilerOptions();
		options.put(CompilerOptions.OPTION_DocCommentSupport, CompilerOptions.ENABLED);
		options.put(CompilerOptions.OPTION_ReportInvalidJavadoc, CompilerOptions.ERROR);
		options.put(CompilerOptions.OPTION_ReportInvalidJavadocTags, CompilerOptions.ENABLED);
		options.put(CompilerOptions.OPTION_ReportInvalidJavadocTagsVisibility, CompilerOptions.PRIVATE);
		options.put(CompilerOptions.OPTION_ReportMissingJavadocTags, CompilerOptions.ERROR);
		options.put(CompilerOptions.OPTION_ReportMissingJavadocTagsVisibility, CompilerOptions.PRIVATE);
		if (reportMissingJavadocComments != null)
			options.put(CompilerOptions.OPTION_ReportMissingJavadocComments, reportMissingJavadocComments);
		return options;
	}
	/* (non-Javadoc)
	 * @see junit.framework.TestCase#setUp()
	 */
	protected void setUp() throws Exception {
		super.setUp();
		reportMissingJavadocComments = null;
	}

// test simple valid enum and its usage
public void test000() {
	runConformTest(
		new String[] {
			"e/X.java",
			"package e;\n" + 
				"import e.T;\n" + 
				"import static e.T.*;\n" + 
				"\n" + 
				"public class X {\n" + 
				"    public static void main(String[] args) {\n" + 
				"    	System.out.print(\"JDTCore team:\");\n" + 
				"    	T oldest = null;\n" +
				"    	int maxAge = Integer.MIN_VALUE;\n" +
				"    	for (T t : T.values()) {\n" + 
				"            if (t == YODA) continue;// skip YODA\n" +
				"            t.setRole(t.isManager());\n" + 
				"			 if (t.age() > maxAge) {\n" +
				"               oldest = t;\n" +
				"               maxAge = t.age();\n" +
				"            }\n" +
				"            System.out.print(\" \"+ t + ':'+t.age()+':'+location(t)+':'+t.role);\n" + 
				"        }\n" + 
				"        System.out.println(\" WINNER is:\" + T.valueOf(oldest.name()));\n" +
				"    }\n" + 
				"\n" + 
				"   private enum Location { SNZ, OTT }\n" + 
				"\n" + 
				"    private static Location location(T t) {\n" + 
				"        switch(t) {\n" + 
				"          case PHILIPPE:  \n" + 
				"          case DAVID:\n" + 
				"          case JEROME:\n" + 
				"          case FREDERIC:\n" + 
				"          	return Location.SNZ;\n" + 
				"          case OLIVIER:\n" + 
				"          case KENT:\n" + 
				"            return Location.OTT;\n" + 
				"          default:\n" + 
				"            throw new AssertionError(\"Unknown team member: \" + t);\n" + 
				"        }\n" + 
				"    }\n" + 
				"}\n",
			"e/T.java",
			"package e;\n" + 
				"public enum T {\n" + 
				"	PHILIPPE(37) {\n" + 
				"		public boolean isManager() {\n" + 
				"			return true;\n" + 
				"		}\n" + 
				"	},\n" + 
				"	DAVID(27),\n" + 
				"	JEROME(33),\n" + 
				"	OLIVIER(35),\n" + 
				"	KENT(40),\n" + 
				"	YODA(41),\n" +
				"	FREDERIC;\n" + 
				"	final static int OLD = 41;\n" +
				"\n" + 
				"   enum Role { M, D }\n" + 
				"\n" + 
				"   int age;\n" + 
				"	Role role;\n" + 
				"\n" + 
				"	T() { this(OLD); }\n" +  
				"	T(int age) {\n" + 
				"		this.age = age;\n" + 
				"	}\n" + 
				"	public int age() { return this.age; }\n" + 
				"	public boolean isManager() { return false; }\n" + 
				"	void setRole(boolean mgr) {\n" + 
				"		this.role = mgr ? Role.M : Role.D;\n" + 
				"	}\n" + 
				"}\n"
		},
		"JDTCore team: PHILIPPE:37:SNZ:M DAVID:27:SNZ:D JEROME:33:SNZ:D OLIVIER:35:OTT:D KENT:40:OTT:D FREDERIC:41:SNZ:D WINNER is:FREDERIC"
	);
}
// check assignment to enum constant is disallowed
public void test001() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	BLEU, \n" + 
			"	BLANC, \n" + 
			"	ROUGE;\n" + 
			"	static {\n" + 
			"		BLEU = null;\n" + 
			"	}\n" + 
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 6)\n" + 
		"	BLEU = null;\n" + 
		"	^^^^\n" + 
		"The final field X.BLEU cannot be assigned\n" + 
		"----------\n");
}
// check diagnosis for duplicate enum constants
public void test002() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU, \n" + 
			"	BLANC, \n" + 
			"	ROUGE,\n" + 
			"	BLEU;\n" + 
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	BLEU, \n" + 
		"	^^^^\n" + 
		"Duplicate field X.BLEU\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 6)\n" + 
		"	BLEU;\n" + 
		"	^^^^\n" + 
		"Duplicate field X.BLEU\n" + 
		"----------\n");
}
// check properly rejecting enum constant modifiers
public void test003() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	public BLEU, \n" + 
			"	transient BLANC, \n" + 
			"	ROUGE\n" + 
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	public BLEU, \n" + 
		"	       ^^^^\n" + 
		"Illegal modifier for the enum constant BLEU; no modifier is allowed\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 4)\n" + 
		"	transient BLANC, \n" + 
		"	          ^^^^^\n" + 
		"Illegal modifier for the enum constant BLANC; no modifier is allowed\n" + 
		"----------\n");
}
// check using an enum constant
public void test004() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		System.out.println(BLEU);\n" + 
			"	}\n" + 
			"	\n" + 
			"}\n"
		},
		"BLEU");
}
// check method override diagnosis (with no enum constants)
public void test005() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	;\n" + 
			"	protected Object clone() { return this; }\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	protected Object clone() { return this; }\n" + 
		"	                 ^^^^^^^\n" + 
		"Cannot override the final method from Enum<X>\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 3)\n" + 
		"	protected Object clone() { return this; }\n" + 
		"	                 ^^^^^^^\n" + 
		"The method clone() of type X should be tagged with @Override since it actually overrides a superclass method\n" + 
		"----------\n");
}	
// check generated #values() method
public void test006() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		for(X x: X.values()) {\n" + 
			"			System.out.print(x);\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}\n"
		},
		"BLEUBLANCROUGE");
}	
// tolerate user definition for $VALUES
public void test007() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"   int $VALUES;\n" +
			"	public static void main(String[] args) {\n" + 
			"		for(X x: X.values()) {\n" + 
			"			System.out.print(x);\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}\n"
		},
		"BLEUBLANCROUGE");
}	
// reject user definition for #values()
public void test008() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"   void dup() {} \n" +
			"   void values() {} \n" +
			"   void dup() {} \n" +
			"   void values() {} \n" +
			"   Missing dup() {} \n" +
			"	public static void main(String[] args) {\n" + 
			"		for(X x: X.values()) {\n" + 
			"			System.out.print(x);\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 7)\n" + 
		"	void dup() {} \n" + 
		"	     ^^^^^\n" + 
		"Duplicate method dup() in type X\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	void values() {} \n" + 
		"	     ^^^^^^^^\n" + 
		"The enum X already defines the method values() implicitly\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 9)\n" + 
		"	void dup() {} \n" + 
		"	     ^^^^^\n" + 
		"Duplicate method dup() in type X\n" + 
		"----------\n" + 
		"4. ERROR in X.java (at line 10)\n" + 
		"	void values() {} \n" + 
		"	     ^^^^^^^^\n" + 
		"The enum X already defines the method values() implicitly\n" + 
		"----------\n" + 
		"5. ERROR in X.java (at line 11)\n" + 
		"	Missing dup() {} \n" + 
		"	^^^^^^^\n" + 
		"Missing cannot be resolved to a type\n" + 
		"----------\n" + 
		"6. ERROR in X.java (at line 11)\n" + 
		"	Missing dup() {} \n" + 
		"	        ^^^^^\n" + 
		"Duplicate method dup() in type X\n" + 
		"----------\n");
}		
// switch on enum
public void test009() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"	//void values() {}\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		X x = BLEU;\n" + 
			"		switch(x) {\n" + 
			"			case BLEU :\n" + 
			"				System.out.println(\"SUCCESS\");\n" + 
			"				break;\n" + 
			"			case BLANC :\n" + 
			"			case ROUGE :\n" + 
			"				System.out.println(\"FAILED\");\n" + 
			"				break;\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}"
		},
		"SUCCESS");
}		
// duplicate switch case 
public void test010() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"	//void values() {}\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		X x = BLEU;\n" + 
			"		switch(x) {\n" + 
			"			case BLEU :\n" + 
			"				break;\n" + 
			"			case BLEU :\n" + 
			"			case BLANC :\n" + 
			"			case ROUGE :\n" + 
			"				System.out.println(\"FAILED\");\n" + 
			"				break;\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 12)\n" + 
		"	case BLEU :\n" + 
		"	^^^^^^^^^\n" + 
		"Duplicate case\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 14)\n" + 
		"	case BLEU :\n" + 
		"	^^^^^^^^^\n" + 
		"Duplicate case\n" + 
		"----------\n");
}
// reject user definition for #values()
public void test011() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"	\n" + 
			"   void values() {} \n" +
			"   void values() {} \n" +
			"	public static void main(String[] args) {\n" + 
			"		for(X x: X.values()) {\n" + 
			"			System.out.print(x);\n" + 
			"		}\n" + 
			"	}\n" + 
			"	\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 7)\n" + 
		"	void values() {} \n" + 
		"	     ^^^^^^^^\n" + 
		"The enum X already defines the method values() implicitly\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	void values() {} \n" + 
		"	     ^^^^^^^^\n" + 
		"The enum X already defines the method values() implicitly\n" + 
		"----------\n");
}	
// check abstract method diagnosis
public void test012() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X implements Runnable { \n" + 
			"	\n" + 
			"	BLEU,\n" + 
			"	BLANC,\n" + 
			"	ROUGE;\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 1)\n" + 
		"	public enum X implements Runnable { \n" + 
		"	            ^\n" + 
		"The type X must implement the inherited abstract method Runnable.run()\n" + 
		"----------\n");
}
// check enum constants with wrong arguments
public void test013() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU(10),\n" + 
			"	BLANC(20),\n" + 
			"	ROUGE(30);\n" +
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	BLEU(10),\n" + 
		"	^^^^\n" + 
		"The constructor X(int) is undefined\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 4)\n" + 
		"	BLANC(20),\n" + 
		"	^^^^^\n" + 
		"The constructor X(int) is undefined\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 5)\n" + 
		"	ROUGE(30);\n" + 
		"	^^^^^\n" + 
		"The constructor X(int) is undefined\n" + 
		"----------\n");
}
// check enum constants with extra arguments
public void test014() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU(10),\n" + 
			"	BLANC(20),\n" + 
			"	ROUGE(30);\n" + 
			"\n" + 
			"	int val;\n" + 
			"	X(int val) {\n" + 
			"		this.val = val;\n" + 
			"	}\n" + 
			"\n" + 
			"	public static void main(String[] args) {\n" + 
			"		for(X x: values()) {\n" + 
			"			System.out.print(x.val);\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"102030");
}	
// check enum constants with wrong arguments
public void test015() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	\n" + 
			"	BLEU(10),\n" + 
			"	BLANC(),\n" + 
			"	ROUGE(30);\n" + 
			"\n" + 
			"	int val;\n" + 
			"	X(int val) {\n" + 
			"		this.val = val;\n" + 
			"	}\n" + 
			"\n" + 
			"	public static void main(String[] args) {\n" + 
			"		for(X x: values()) {\n" + 
			"			System.out.print(x.val);\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	BLANC(),\n" + 
		"	^^^^^\n" + 
		"The constructor X() is undefined\n" + 
		"----------\n");
}		
// check enum constants with wrong arguments
public void test016() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	\n" + 
			"	BLEU(10) {\n" + 
			"		String foo() { // inner\n" + 
			"			return super.foo() + this.val;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	BLANC(20),\n" + 
			"	ROUGE(30);\n" + 
			"\n" + 
			"	int val;\n" + 
			"	X(int val) {\n" + 
			"		this.val = val;\n" + 
			"	}\n" + 
			"	String foo() {  // outer\n" + 
			"		return this.name();\n" + 
			"	}\n" + 
			"	public static void main(String[] args) {\n" + 
			"		for(X x: values()) {\n" + 
			"			System.out.print(x.foo());\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"BLEU10BLANCROUGE");
}			
// check enum constants with empty arguments
public void test017() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	\n" + 
			"	BLEU()\n" + 
			"}\n"
		},
		"");
}
// cannot extend enums
public void test018() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	BLEU()\n" + 
			"}\n" + 
			"\n" + 
			"class XX extends X implements X {\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 5)\n" + 
		"	class XX extends X implements X {\n" + 
		"	                 ^\n" + 
		"The type X cannot be the superclass of XX; a superclass must be a class\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 5)\n" + 
		"	class XX extends X implements X {\n" + 
		"	                              ^\n" + 
		"The type X cannot be a superinterface of XX; a superinterface must be an interface\n" + 
		"----------\n");
}		
// 74851
public void test019() {
	this.runConformTest(
		new String[] {
			"MonthEnum.java",
			"public enum MonthEnum {\n" + 
			"    JANUARY   (30),\n" + 
			"    FEBRUARY  (28),\n" + 
			"    MARCH     (31),\n" + 
			"    APRIL     (30),\n" + 
			"    MAY       (31),\n" + 
			"    JUNE      (30),\n" + 
			"    JULY      (31),\n" + 
			"    AUGUST    (31),\n" + 
			"    SEPTEMBER (31),\n" + 
			"    OCTOBER   (31),\n" + 
			"    NOVEMBER  (30),\n" + 
			"    DECEMBER  (31);\n" + 
			"    \n" + 
			"    private final int days;\n" + 
			"    \n" + 
			"    MonthEnum(int days) {\n" + 
			"        this.days = days;\n" + 
			"    }\n" + 
			"    \n" + 
			"    public int getDays() {\n" + 
			"    	boolean leapYear = true;\n" + 
			"    	switch(this) {\n" + 
			"    		case FEBRUARY: if(leapYear) return days+1;\n" + 
			"    	}\n" + 
			"    	return days;\n" + 
			"    }\n" + 
			"    \n" + 
			"    public static void main(String[] args) {\n" + 
			"    	System.out.println(JANUARY.getDays());\n" + 
			"    }\n" + 
			"    \n" + 
			"}\n",
		},
		"30");
}
// 74226
public void test020() {
	this.runConformTest(
		new String[] {
			"Foo.java",
			"public class Foo{\n" + 
			"    public enum Rank {FIRST,SECOND,THIRD}\n" + 
			"    public void setRank(Rank rank){}\n" + 
			"}\n",
		},
		"");
}	
// 74226 variation - check nested enum is implicitly static
public void test021() {
	this.runNegativeTest(
		new String[] {
			"Foo.java",
			"public class Foo {\n" + 
			"    public static enum Rank {FIRST,SECOND,THIRD;\n" + 
			"            void bar() { foo(); } \n" + 
			"    }\n" + 
			"    public void setRank(Rank rank){}\n" + 
			"    void foo() {}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in Foo.java (at line 3)\n" + 
		"	void bar() { foo(); } \n" + 
		"	             ^^^\n" + 
		"Cannot make a static reference to the non-static method foo() from the type Foo\n" + 
		"----------\n");
}		
// 77151 - cannot use qualified name to denote enum constants in switch case label
public void test022() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	\n" + 
			"	enum MX { BLEU, BLANC, ROUGE }\n" + 
			"	\n" + 
			"	void foo(MX e) {\n" + 
			"		switch(e) {\n" + 
			"			case MX.BLEU : break;\n" + 
			"			case MX.BLANC : break;\n" + 
			"			case MX.ROUGE : break;\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 7)\n" + 
		"	case MX.BLEU : break;\n" + 
		"	        ^^^^\n" + 
		"The enum constant X.MX.BLEU reference cannot be qualified in a case label\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	case MX.BLANC : break;\n" + 
		"	        ^^^^^\n" + 
		"The enum constant X.MX.BLANC reference cannot be qualified in a case label\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 9)\n" + 
		"	case MX.ROUGE : break;\n" + 
		"	        ^^^^^\n" + 
		"The enum constant X.MX.ROUGE reference cannot be qualified in a case label\n" + 
		"----------\n");
}

// 77212 
public void test023() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	public enum RuleType{ SUCCESS, FAILURE }\n" + 
			"	public static void main(String[] args) {\n" + 
			"		System.out.print(RuleType.valueOf(RuleType.SUCCESS.name()));\n" + 
			"	}\n" + 
			"}",
		},
		"SUCCESS");
}

// 77244 - cannot declare final enum
public void test024() {
	this.runNegativeTest(
		new String[] {
			"X.java",	
			"public final enum X {\n" +
			"	FOO() {}\n" +
			"}\n" + 
			"\n",
		},
	"----------\n" + 
	"1. ERROR in X.java (at line 1)\n" + 
	"	public final enum X {\n" + 
	"	                  ^\n" + 
	"Illegal modifier for the enum X; only public is permitted\n" + 
	"----------\n");
}	

// values is using arraycopy instead of clone 
public void test025() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	SUC, CESS;\n" + 
			"	public static void main(String[] args) {\n" + 
			"		for (X x : values()) {\n" + 
			"			System.out.print(x.name());\n" + 
			"		}\n" + 
			"	}\n" + 
			"}",
		},
		"SUCCESS");
}

// check enum name visibility
public void test026() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { BLEU, BLANC, ROUGE }\n" + 
			"}\n" + 
			"\n" + 
			"class Y {\n" + 
			"	void foo(Couleur c) {\n" + 
			"		switch (c) {\n" + 
			"			case BLEU :\n" + 
			"				break;\n" + 
			"			case BLANC :\n" + 
			"				break;\n" + 
			"			case ROUGE :\n" + 
			"				break;\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 6)\n" + 
		"	void foo(Couleur c) {\n" + 
		"	         ^^^^^^^\n" + 
		"Couleur cannot be resolved to a type\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	case BLEU :\n" + 
		"	     ^^^^\n" + 
		"BLEU cannot be resolved\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 10)\n" + 
		"	case BLANC :\n" + 
		"	     ^^^^^\n" + 
		"BLANC cannot be resolved\n" + 
		"----------\n" + 
		"4. ERROR in X.java (at line 12)\n" + 
		"	case ROUGE :\n" + 
		"	     ^^^^^\n" + 
		"ROUGE cannot be resolved\n" + 
		"----------\n");
}	
// check enum name visibility
public void test027() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { BLEU, BLANC, ROUGE }\n" + 
			"	class Y {\n" + 
			"		void foo(Couleur c) {\n" + 
			"			switch (c) {\n" + 
			"				case BLEU :\n" + 
			"					break;\n" + 
			"				case BLANC :\n" + 
			"					break;\n" + 
			"				case ROUGE :\n" + 
			"					break;\n" + 
			"			}\n" + 
			"		}	\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}		
// check enum name visibility
public void test028() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { \n" + 
			"		BLEU, BLANC, ROUGE;\n" + 
			"		static int C = 0;\n" + 
			"		static void FOO() {}\n" + 
			"	}\n" + 
			"	class Y {\n" + 
			"		void foo(Couleur c) {\n" + 
			"			switch (c) {\n" + 
			"				case BLEU :\n" + 
			"					break;\n" + 
			"				case BLANC :\n" + 
			"					break;\n" + 
			"				case ROUGE :\n" + 
			"					break;\n" + 
			"			}\n" + 
			"			FOO();\n" + 
			"			C++;\n" + 
			"		}	\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 17)\n" + 
		"	FOO();\n" + 
		"	^^^\n" + 
		"The method FOO() is undefined for the type X.Y\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 18)\n" + 
		"	C++;\n" + 
		"	^\n" + 
		"C cannot be resolved\n" + 
		"----------\n");
}		
// check enum name visibility
public void test029() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { \n" + 
			"		BLEU, BLANC, ROUGE; // take precedence over toplevel BLEU type\n" + 
			"	}\n" + 
			"	class Y {\n" + 
			"		void foo(Couleur c) {\n" + 
			"			switch (c) {\n" + 
			"				case BLEU :\n" + 
			"					break;\n" + 
			"				case BLANC :\n" + 
			"					break;\n" + 
			"				case ROUGE :\n" + 
			"					break;\n" + 
			"			}\n" + 
			"		}	\n" + 
			"	}\n" + 
			"}\n" + 
			"\n" + 
			"class BLEU {}\n",
		},
		"");
}		
// check enum name visibility
public void test030() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { \n" + 
			"		BLEU, BLANC, ROUGE; // take precedence over sibling constant from Color\n" + 
			"	}\n" + 
			"	enum Color { \n" + 
			"		BLEU, BLANC, ROUGE;\n" + 
			"	}\n" + 
			"	class Y {\n" + 
			"		void foo(Couleur c) {\n" + 
			"			switch (c) {\n" + 
			"				case BLEU :\n" + 
			"					break;\n" + 
			"				case BLANC :\n" + 
			"					break;\n" + 
			"				case ROUGE :\n" + 
			"					break;\n" + 
			"			}\n" + 
			"		}	\n" + 
			"	}\n" + 
			"}\n" + 
			"\n" + 
			"class BLEU {}\n",
		},
		"");
}		
// check enum name visibility
public void test031() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Couleur { \n" + 
			"		BLEU, BLANC, ROUGE; // take precedence over toplevel BLEU type\n" + 
			"	}\n" + 
			"	class Y implements IX, JX {\n" + 
			"		void foo(Couleur c) {\n" + 
			"			switch (c) {\n" + 
			"				case BLEU :\n" + 
			"					break;\n" + 
			"				case BLANC :\n" + 
			"					break;\n" + 
			"				case ROUGE :\n" + 
			"					break;\n" + 
			"			}\n" + 
			"		}	\n" + 
			"	}\n" + 
			"}\n" + 
			"\n" + 
			"interface IX {\n" + 
			"	int BLEU = 1;\n" + 
			"}\n" + 
			"interface JX {\n" + 
			"	int BLEU = 2;\n" + 
			"}\n" + 
			"class BLEU {}\n" + 
			"\n",
		},
		"");
}	

// check Enum cannot be used as supertype (explicitly)
public void test032() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X extends Enum {\n" + 
			"}",
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 1)\n" + 
		"	public class X extends Enum {\n" + 
		"	                       ^^^^\n" + 
		"Enum is a raw type. References to generic type Enum<E> should be parameterized\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 1)\n" + 
		"	public class X extends Enum {\n" + 
		"	                       ^^^^\n" + 
		"The type X may not subclass Enum explicitly\n" + 
		"----------\n");
}		

// Javadoc in enum (see bug 78018)
public void test033() {
	this.runConformTest(
		new String[] {
			"E.java",
			"	/**\n" +
				"	 * Valid javadoc\n" +
				"	 * @author ffr\n" +
				"	 */\n" +
				"public enum E {\n" +
				"	/** Valid javadoc */\n" +
				"	TEST,\n" +
				"	/** Valid javadoc */\n" +
				"	VALID;\n" +
				"	/** Valid javadoc */\n" +
				"	public void foo() {}\n" +
				"}\n"
		}
	);
}
public void test034() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"	/**\n" +
				"	 * Invalid javadoc\n" +
				"	 * @exception NullPointerException Invalid tag\n" +
				"	 * @throws NullPointerException Invalid tag\n" +
				"	 * @return Invalid tag\n" +
				"	 * @param x Invalid tag\n" +
				"	 */\n" +
				"public enum E { TEST, VALID }\n"
		},
		"----------\n" +
			"1. ERROR in E.java (at line 3)\n" +
			"	* @exception NullPointerException Invalid tag\n" +
			"	   ^^^^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"2. ERROR in E.java (at line 4)\n" +
			"	* @throws NullPointerException Invalid tag\n" +
			"	   ^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"3. ERROR in E.java (at line 5)\n" +
			"	* @return Invalid tag\n" +
			"	   ^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"4. ERROR in E.java (at line 6)\n" +
			"	* @param x Invalid tag\n" +
			"	   ^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n"
	);
}
public void test035() {
	this.runConformTest(
		new String[] {
			"E.java",
			"	/**\n" +
				"	 * @see \"Valid normal string\"\n" +
				"	 * @see <a href=\"http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javadoc.html\">Valid URL link reference</a>\n" +
				"	 * @see Object\n" +
				"	 * @see #TEST\n" +
				"	 * @see E\n" +
				"	 * @see E#TEST\n" +
				"	 */\n" +
				"public enum E { TEST, VALID }\n"
		}
	);
}
public void test036() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"	/**\n" +
				"	 * @see \"invalid\" no text allowed after the string\n" +
				"	 * @see <a href=\"invalid\">invalid</a> no text allowed after the href\n" +
				"	 * @see\n" +
				"	 * @see #VALIDE\n" +
				"	 */\n" +
				"public enum E { TEST, VALID }\n"
		},
		"----------\n" +
			"1. ERROR in E.java (at line 2)\n" + 
			"	* @see \"invalid\" no text allowed after the string\n" + 
			"	                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" + 
			"Javadoc: Unexpected text\n" + 
			"----------\n" + 
			"2. ERROR in E.java (at line 3)\n" + 
			"	* @see <a href=\"invalid\">invalid</a> no text allowed after the href\n" + 
			"	                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" + 
			"Javadoc: Unexpected text\n" + 
			"----------\n" + 
			"3. ERROR in E.java (at line 4)\n" + 
			"	* @see\n" + 
			"	   ^^^\n" + 
			"Javadoc: Missing reference\n" + 
			"----------\n" + 
			"4. ERROR in E.java (at line 5)\n" + 
			"	* @see #VALIDE\n" + 
			"	        ^^^^^^\n" + 
			"Javadoc: VALIDE cannot be resolved or is not a field\n" + 
			"----------\n"
	);
}
public void test037() {
	this.runConformTest(
		new String[] {
			"E.java",
			"	/**\n" +
				"	 * Value test: {@value #TEST}\n" +
				"	 * or: {@value E#TEST}\n" +
				"	 */\n" +
				"public enum E { TEST, VALID }\n"
		}
	);
}
public void test038() {
	reportMissingJavadocComments = CompilerOptions.ERROR;
	this.runNegativeTest(
		new String[] {
			"E.java",
			"public enum E { TEST, VALID;\n" +
			"	public void foo() {}\n" +
			"}"
		},
		"----------\n" + 
			"1. ERROR in E.java (at line 1)\n" + 
			"	public enum E { TEST, VALID;\n" + 
			"	            ^\n" + 
			"Javadoc: Missing comment for public declaration\n" + 
			"----------\n" + 
			"2. ERROR in E.java (at line 1)\n" + 
			"	public enum E { TEST, VALID;\n" + 
			"	                ^^^^\n" + 
			"Javadoc: Missing comment for public declaration\n" + 
			"----------\n" + 
			"3. ERROR in E.java (at line 1)\n" + 
			"	public enum E { TEST, VALID;\n" + 
			"	                      ^^^^^\n" + 
			"Javadoc: Missing comment for public declaration\n" + 
			"----------\n" + 
			"4. ERROR in E.java (at line 2)\n" + 
			"	public void foo() {}\n" + 
			"	            ^^^^^\n" + 
			"Javadoc: Missing comment for public declaration\n" + 
			"----------\n"
	);
}
public void test039() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"public enum E {\n" +
				"	/**\n" +
				"	 * @exception NullPointerException Invalid tag\n" +
				"	 * @throws NullPointerException Invalid tag\n" +
				"	 * @return Invalid tag\n" +
				"	 * @param x Invalid tag\n" +
				"	 */\n" +
				"	TEST,\n" +
				"	VALID;\n" +
				"}\n"
		},
		"----------\n" +
			"1. ERROR in E.java (at line 3)\n" +
			"	* @exception NullPointerException Invalid tag\n" +
			"	   ^^^^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"2. ERROR in E.java (at line 4)\n" +
			"	* @throws NullPointerException Invalid tag\n" +
			"	   ^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"3. ERROR in E.java (at line 5)\n" +
			"	* @return Invalid tag\n" +
			"	   ^^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n" +
			"4. ERROR in E.java (at line 6)\n" +
			"	* @param x Invalid tag\n" +
			"	   ^^^^^\n" +
			"Javadoc: Unexpected tag\n" +
			"----------\n"
	);
}
public void test040() {
	this.runConformTest(
		new String[] {
			"E.java",
			"public enum E {\n" +
				"	/**\n" +
				"	 * @see E\n" +
				"	 * @see #VALID\n" +
				"	 */\n" +
				"	TEST,\n" +
				"	/**\n" +
				"	 * @see E#TEST\n" +
				"	 * @see E\n" +
				"	 */\n" +
				"	VALID;\n" +
				"	/**\n" +
				"	 * @param x the object\n" +
				"	 * @return String\n" +
				"	 * @see Object\n" +
				"	 */\n" +
				"	public String val(Object x) { return x.toString(); }\n" +
				"}\n"
		}
	);
}
public void test041() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"public enum E {\n" +
				"	/**\n" +
				"	 * @see e\n" +
				"	 * @see #VALIDE\n" +
				"	 */\n" +
				"	TEST,\n" +
				"	/**\n" +
				"	 * @see E#test\n" +
				"	 * @see EUX\n" +
				"	 */\n" +
				"	VALID;\n" +
				"	/**\n" +
				"	 * @param obj the object\n" +
				"	 * @return\n" +
				"	 * @see Objet\n" +
				"	 */\n" +
				"	public String val(Object x) { return x.toString(); }\n" +
				"}\n"
		},
		"----------\n" +
			"1. ERROR in E.java (at line 3)\n" + 
			"	* @see e\n" + 
			"	       ^\n" + 
			"Javadoc: e cannot be resolved to a type\n" + 
			"----------\n" + 
			"2. ERROR in E.java (at line 4)\n" + 
			"	* @see #VALIDE\n" + 
			"	        ^^^^^^\n" + 
			"Javadoc: VALIDE cannot be resolved or is not a field\n" + 
			"----------\n" + 
			"3. ERROR in E.java (at line 8)\n" + 
			"	* @see E#test\n" + 
			"	         ^^^^\n" + 
			"Javadoc: test cannot be resolved or is not a field\n" + 
			"----------\n" + 
			"4. ERROR in E.java (at line 9)\n" + 
			"	* @see EUX\n" + 
			"	       ^^^\n" + 
			"Javadoc: EUX cannot be resolved to a type\n" + 
			"----------\n" + 
			"5. ERROR in E.java (at line 13)\n" + 
			"	* @param obj the object\n" + 
			"	         ^^^\n" + 
			"Javadoc: Parameter obj is not declared\n" + 
			"----------\n" + 
			"6. ERROR in E.java (at line 14)\n" + 
			"	* @return\n" + 
			"	   ^^^^^^\n" + 
			"Javadoc: Missing return type description\n" + 
			"----------\n" + 
			"7. ERROR in E.java (at line 15)\n" + 
			"	* @see Objet\n" + 
			"	       ^^^^^\n" + 
			"Javadoc: Objet cannot be resolved to a type\n" + 
			"----------\n" + 
			"8. ERROR in E.java (at line 17)\n" + 
			"	public String val(Object x) { return x.toString(); }\n" + 
			"	                         ^\n" + 
			"Javadoc: Missing tag for parameter x\n" + 
			"----------\n"
	);
}
public void test042() {
	this.runConformTest(
		new String[] {
			"E.java",
			"public enum E {\n" +
				"	/**\n" +
				"	 * Test value: {@value #TEST}\n" +
				"	 */\n" +
				"	TEST,\n" +
				"	/**\n" +
				"	 * Valid value: {@value E#VALID}\n" +
				"	 */\n" +
				"	VALID;\n" +
				"	/**\n" +
				"	 * Test value: {@value #TEST}\n" +
				"	 * Valid value: {@value E#VALID}\n" +
				"	 * @param x the object\n" +
				"	 * @return String\n" +
				"	 */\n" +
				"	public String val(Object x) { return x.toString(); }\n" +
				"}\n"
		}
	);
}

// External javadoc references to enum
public void test043() {
	this.runConformTest(
		new String[] {
			"test/E.java",
			"package test;\n" +
				"public enum E { TEST, VALID }\n",
			"test/X.java",
			"import static test.E.TEST;\n" +
				"	/**\n" +
				"	 * @see test.E\n" +
				"	 * @see test.E#VALID\n" +
				"	 * @see #TEST\n" +
				"	 */\n" +
				"public class X {}\n"
		}
	);
}
public void test044() {
	this.runConformTest(
		new String[] {
			"test/E.java",
			"package test;\n" +
				"public enum E { TEST, VALID }\n",
			"test/X.java",
			"import static test.E.TEST;\n" +
				"	/**\n" +
				"	 * Valid value = {@value test.E#VALID}\n" +
				"	 * Test value = {@value #TEST}\n" +
				"	 */\n" +
				"public class X {}\n"
		}
	);
}
/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78321
 */
public void test045() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X\n" + 
			"{\n" + 
			"  FIRST,\n" + 
			"  SECOND,\n" + 
			"  THIRD;\n" + 
			"\n" + 
			"  static {\n" + 
			"    for (X t : values()) {\n" + 
			"      System.out.print(t.name());\n" + 
			"    }\n" + 
			"  }\n" + 
			"\n" + 
			"  X() {\n" + 
			"  }\n" + 
			"\n" + 
			"  public static void main(String[] args) {\n" + 
			"  }\n" + 
			"}"
		},
		"FIRSTSECONDTHIRD"
	);
}
/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78464
 */
public void test046() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"  a(1);\n" + 
			"  X(int i) {\n" + 
			"  }\n" + 
			"}"
		},
		""
	);
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78914
 */
public void test047() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" +
			"	;\n" +
			"	X() {\n" +
			"		super();\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	super();\n" + 
		"	^^^^^^^\n" + 
		"Cannot invoke super constructor from enum constructor X()\n" + 
		"----------\n"
	);
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=77211
 */
public void test048() {
	this.runConformTest(
		new String[] {
			"StopLight.java",
			"public enum StopLight{\n" +
			"    RED{\n" +
			"        public StopLight next(){ return GREEN; }\n" +
			"    },\n" +
			"    GREEN{\n" +
			"        public StopLight next(){ return YELLOW; }\n" +
			"    },\n" +
			"    YELLOW{\n" +
			"        public StopLight next(){ return RED; }\n" +
			"    };\n" +
			"\n" +
			"   public abstract StopLight next();\n" +
			"}"
		},
		""
	);
}
/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78915
 */
public void test049() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public abstract enum X {}"
		},
	"----------\n" + 
	"1. ERROR in X.java (at line 1)\n" + 
	"	public abstract enum X {}\n" + 
	"	                     ^\n" + 
	"Illegal modifier for the enum X; only public is permitted\n" + 
	"----------\n"
	);
}

public void test050() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {}"
		},
		""
	);
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78914 - variation
 */
public void test051() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	BLEU (0) {\n" + 
			"	}\n" + 
			"	;\n" + 
			"	X() {\n" + 
			"		this(0);\n" + 
			"	}\n" + 
			"	X(int i) {\n" + 
			"	}\n" + 
			"}\n"
		},
		""
	);
}	

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78916
 */
public void test052() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	A\n" + 
			"	;\n" + 
			"	\n" + 
			"	public abstract void foo();\n" + 
			"}\n"
		},
	"----------\n" + 
	"1. ERROR in X.java (at line 5)\n" + 
	"	public abstract void foo();\n" + 
	"	                     ^^^^^\n" + 
	"The enum X can only define the abstract method foo() if it also defines enum constants with corresponding implementations\n" + 
	"----------\n"
	);
}		

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78916 - variation
 */
public void test053() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	A () { public void foo() {} }\n" + 
			"	;\n" + 
			"	\n" + 
			"	public abstract void foo();\n" + 
			"}\n"
		},
		""
	);
}	
	
/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78916 - variation
 */
public void test054() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	A() {}\n" + 
			"	;\n" + 
			"	\n" + 
			"	public abstract void foo();\n" + 
			"}\n"
		},
	"----------\n" + 
	"1. ERROR in X.java (at line 2)\n" + 
	"	A() {}\n" + 
	"	    ^\n" + 
	"The type new X(){} must implement the inherited abstract method X.foo()\n" + 
	"----------\n"
	);
}			

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78916 - variation
 */
public void test055() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	;\n" + 
			"	\n" + 
			"	public abstract void foo();\n" + 
			"}\n"
		},
	"----------\n" + 
	"1. ERROR in X.java (at line 4)\n" + 
	"	public abstract void foo();\n" + 
	"	                     ^^^^^\n" + 
	"The enum X can only define the abstract method foo() if it also defines enum constants with corresponding implementations\n" + 
	"----------\n"
	);
}		
// TODO (philippe) enum cannot be declared as local type

// TODO (philippe) check one cannot redefine Enum incorrectly

// TODO (philippe) check enum syntax recovery
/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=78914 - variation
 */
public void test056() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" +
			"    PLUS {\n" +
			"        double eval(double x, double y) { return x + y; }\n" +
			"    };\n" +
			"\n" +
			"    // Perform the arithmetic X represented by this constant\n" +
			"    abstract double eval(double x, double y);\n" +
			"}"
		},
		""
	);
	String expectedOutput = 
		"// Signature: Ljava/lang/Enum<LX;>;\n" + 
		"public abstract enum X {\n"; 

	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
		int index = actualOutput.indexOf(expectedOutput);
		if (index == -1 || expectedOutput.length() == 0) {
			System.out.println(Util.displayString(actualOutput, 3));
		}
		if (index == -1) {
			assertEquals("Wrong contents", expectedOutput, actualOutput);
		}
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=77430
 */
public void test057() {
	this.runConformTest(
		new String[] {
			"Enum2.java",
			"public class Enum2 {\n" + 
			"    enum Color { RED, GREEN };\n" + 
			"    public static void main(String[] args) {\n" + 
			"        Color c= Color.GREEN;\n" + 
			"        switch (c) {\n" + 
			"        case RED:\n" + 
			"            System.out.println(Color.RED);\n" + 
			"            break;\n" + 
			"        case GREEN:\n" + 
			"            System.out.println(c);\n" + 
			"            break;\n" + 
			"        }\n" + 
			"    }\n" + 
			"}\n"
		},
		"GREEN"
	);
}			

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=77430 - variation
 */
public void test058() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"enum X { a }\n" + 
			"class A {\n" + 
			"	public static void main(String[] args) {\n" + 
			"		test(X.a, 9);\n" + 
			"		test2(X.a, 3);\n" + 
			"	}\n" + 
			"	static void test(X x, int a) {\n" + 
			"		if (x == a) a++; // incomparable types: X and int\n" + 
			"		switch(x) {\n" + 
			"			case a : System.out.println(a); // prints \'9\'\n" + 
			"		}\n" + 
			"	}\n" + 
			"	static void test2(X x, final int aa) {\n" + 
			"		switch(x) {\n" + 
			"			case aa : // unqualified enum constant error\n" + 
			"				System.out.println(a); // cannot find a\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 8)\n" + 
		"	if (x == a) a++; // incomparable types: X and int\n" + 
		"	    ^^^^^^\n" + 
		"Incompatible operand types X and int\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 15)\n" + 
		"	case aa : // unqualified enum constant error\n" + 
		"	     ^^\n" + 
		"aa cannot be resolved or is not a field\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 16)\n" + 
		"	System.out.println(a); // cannot find a\n" + 
		"	                   ^\n" + 
		"a cannot be resolved\n" + 
		"----------\n"
	);
}			

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=81262
 */
public void test059() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	MONDAY {\n" + 
			"		public void foo() {\n" + 
			"		}\n" + 
			"	};\n" + 
			"	private X() {\n" + 
			"	}\n" + 
			"	public static void main(String[] args) {\n" + 
			"	  System.out.println(\"SUCCESS\");\n" + 
			"	}\n" + 
			"}\n"
		},
		"SUCCESS");
}	

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=81589
 */
public void test060() {
	this.runNegativeTest(
		new String[] {
			"com/flarion/test/a/MyEnum.java",
			"package com.flarion.test.a;\n" + 
			"public enum MyEnum {\n" + 
			"\n" + 
			"    First, Second;\n" + 
			"    \n" + 
			"}\n",
			"com/flarion/test/b/MyClass.java",
			"package com.flarion.test.b;\n" + 
			"import com.flarion.test.a.MyEnum;\n" + 
			"import static com.flarion.test.a.MyEnum.First;\n" +
			"import static com.flarion.test.a.MyEnum.Second;\n" +
			"public class MyClass {\n" + 
			"\n" + 
			"    public void myMethod() {\n" + 
			"        MyEnum e = MyEnum.First;\n" + 
			"        switch (e) {\n" + 
			"        case First:\n" + 
			"            break;\n" + 
			"        case Second:\n" + 
			"            break;\n" + 
			"        }\n" + 
			"        throw new Exception();\n" + // fake error to cause dump of unused import warnings
			"    }\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in com\\flarion\\test\\b\\MyClass.java (at line 3)\n" + 
		"	import static com.flarion.test.a.MyEnum.First;\n" + 
		"	              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" + 
		"The import com.flarion.test.a.MyEnum.First is never used\n" + 
		"----------\n" + 
		"2. WARNING in com\\flarion\\test\\b\\MyClass.java (at line 4)\n" + 
		"	import static com.flarion.test.a.MyEnum.Second;\n" + 
		"	              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" + 
		"The import com.flarion.test.a.MyEnum.Second is never used\n" + 
		"----------\n" + 
		"3. ERROR in com\\flarion\\test\\b\\MyClass.java (at line 15)\n" + 
		"	throw new Exception();\n" + 
		"	^^^^^^^^^^^^^^^^^^^^^\n" + 
		"Unhandled exception type Exception\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=82217
 */
public void test061() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	A, B, C;\n" + 
			"	public static final X D = null;\n" + 
			"}\n" + 
			"\n" + 
			"class A {\n" + 
			"	private void foo(X x) {\n" + 
			"		switch (x) {\n" + 
			"			case D:\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.A has no corresponding case label\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.B has no corresponding case label\n" + 
		"----------\n" + 
		"3. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.C has no corresponding case label\n" + 
		"----------\n" + 
		"4. ERROR in X.java (at line 9)\n" + 
		"	case D:\n" + 
		"	     ^\n" + 
		"The field X.D cannot be referenced from an enum case label; only enum constants can be used in enum switch\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=82217 - variation with qualified name
 */
public void test062() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	A, B, C;\n" + 
			"	public static final X D = null;\n" + 
			"}\n" + 
			"\n" + 
			"class A {\n" + 
			"	private void foo(X x) {\n" + 
			"		switch (x) {\n" + 
			"			case X.D:\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.A has no corresponding case label\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.B has no corresponding case label\n" + 
		"----------\n" + 
		"3. WARNING in X.java (at line 8)\n" + 
		"	switch (x) {\n" + 
		"	        ^\n" + 
		"The enum constant X.C has no corresponding case label\n" + 
		"----------\n" + 
		"4. ERROR in X.java (at line 9)\n" + 
		"	case X.D:\n" + 
		"	       ^\n" + 
		"The field X.D cannot be referenced from an enum case label; only enum constants can be used in enum switch\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=81945
 */
public void test063() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X<T> {\n" + 
			"  enum Option { ALPHA, BRAVO  };\n" + 
			"  void method1(Option item) {\n" + 
			"    switch (item) {\n" + 
			"    case ALPHA:      break;\n" + 
			"    case BRAVO:      break;\n" + 
			"    }\n" + 
			"  }\n" + 
			"}\n",
		},
		"");
}		

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=82590
 */
public void test064() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X implements B {\n" + 
			"\n" + 
			"	C1 {\n" + 
			"		public void test() {};\n" + 
			"	},\n" + 
			"	C2 {\n" + 
			"		public void test() {};\n" + 
			"	}\n" + 
			"}\n" + 
			"\n" + 
			"interface B {\n" + 
			"	public void test();\n" + 
			"	\n" + 
			"}\n",
		},
		"");
}	

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=83847
 */
public void test065() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"  A;\n" + 
			"  private void foo() {\n" + 
			"    X e= new X() {\n" + 
			"    };\n" + 
			"  }\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	X e= new X() {\n" + 
		"	         ^\n" + 
		"Cannot instantiate the type X\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=83860
 */
public void test066() {
    this.runConformTest(
        new String[] {
            "X.java",
            "public enum X {\n" +
            "    SUCCESS (0) {};\n" +
            "    private X(int i) {}\n" +
            "    public static void main(String[] args) {\n" +
            "       for (X x : values()) {\n" +
            "           System.out.print(x);\n" +
            "       }\n" +
            "    }\n" +
            "}",
        },
        "SUCCESS");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=83219
 */
public void test067() {
    this.runNegativeTest(
        new String[] {
            "X.java",
            "public enum X {\n" + 
            "    ONE, TWO, THREE;\n" + 
            "    abstract int getSquare();\n" + 
            "    abstract int getSquare();\n" + 
            "}",
        },
        "----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	abstract int getSquare();\n" + 
		"	             ^^^^^^^^^^^\n" + 
		"Duplicate method getSquare() in type X\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 4)\n" + 
		"	abstract int getSquare();\n" + 
		"	             ^^^^^^^^^^^\n" + 
		"Duplicate method getSquare() in type X\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=83648
 */
public void test068() {
    this.runNegativeTest(
        new String[] {
            "X.java",
            "public enum X {\n" +
            "    A(1, 3), B(1, 3), C(1, 3) { }\n" +
            "   	;\n" +
            "    public X(int i, int j) { }\n" +
            "}",
        },
        "----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	public X(int i, int j) { }\n" + 
		"	       ^^^^^^^^^^^^^^^\n" + 
		"Illegal modifier for the enum constructor; only private is permitted.\n" + 
		"----------\n");
}

/**
 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=83648
 */
public void test069() {
    this.runNegativeTest(
        new String[] {
            "X.java",
            "public enum X {\n" +
            "    A(1, 3), B(1, 3), C(1, 3) { }\n" +
            "   	;\n" +
            "    protected X(int i, int j) { }\n" +
            "}",
        },
        "----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	protected X(int i, int j) { }\n" + 
		"	          ^^^^^^^^^^^^^^^\n" + 
		"Illegal modifier for the enum constructor; only private is permitted.\n" + 
		"----------\n");
}

public void test070() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" +
			"    PLUS {\n" +
			"        double eval(double x, double y) { return x + y; }\n" +
			"    };\n" +
			"\n" +
			"    // Perform the arithmetic X represented by this constant\n" +
			"    abstract double eval(double x, double y);\n" +
			"}"
		},
		""
	);
	String expectedOutput = 
		"  // Method descriptor #18 (Ljava/lang/String;I)V\n" + 
		"  // Stack: 3, Locals: 3\n" + 
		"  private X(java.lang.String arg0, int arg1);\n" + 
		"    0  aload_0 [this]\n" + 
		"    1  aload_1\n" + 
		"    2  iload_2\n" + 
		"    3  invokespecial java.lang.Enum(java.lang.String, int) [25]\n" + 
		"    6  return\n";

	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
		int index = actualOutput.indexOf(expectedOutput);
		if (index == -1 || expectedOutput.length() == 0) {
			System.out.println(Util.displayString(actualOutput, 3));
		}
		if (index == -1) {
			assertEquals("Wrong contents", expectedOutput, actualOutput);
		}
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83901
public void test071() {
	this.runConformTest( // no methods to implement
		new String[] {
			"X1.java",
			"public enum X1 implements I {\n" +
			"	;\n" +
			"}\n" +
			"interface I {}\n"
		},
		""
	);
	this.runConformTest( // no methods to implement with constant
		new String[] {
			"X1a.java",
			"public enum X1a implements I {\n" +
			"	A;\n" +
			"}\n" +
			"interface I {}\n"
		},
		""
	);
	this.runConformTest( // no methods to implement with constant body
		new String[] {
			"X1b.java",
			"public enum X1b implements I {\n" +
			"	A() { void random() {} };\n" +
			"}\n" +
			"interface I {}\n"
		},
		""
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83901
public void test072() {
	this.runConformTest( // implement inherited method
		new String[] {
			"X2.java",
			"public enum X2 implements I {\n" +
			"	;\n" +
			"	public void test() {}\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
	this.runConformTest( // implement inherited method with constant
		new String[] {
			"X2a.java",
			"public enum X2a implements I {\n" +
			"	A;\n" +
			"	public void test() {}\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
	this.runConformTest( // implement inherited method with constant body
		new String[] {
			"X2b.java",
			"public enum X2b implements I {\n" +
			"	A() { public void test() {} };\n" +
			"	public void test() {}\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
	this.runConformTest( // implement inherited method with random constant body
		new String[] {
			"X2c.java",
			"public enum X2c implements I {\n" +
			"	A() { void random() {} };\n" +
			"	public void test() {}\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83901
public void test073() {
	this.runNegativeTest( // implement inherited method but as abstract
		new String[] {
			"X3.java",
			"public enum X3 implements I {\n" +
			"	;\n" +
			"	public abstract void test();\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X3.java (at line 3)\n" + 
		"	public abstract void test();\n" + 
		"	                     ^^^^^^\n" + 
		"The enum X3 can only define the abstract method test() if it also defines enum constants with corresponding implementations\n" + 
		"----------\n"
		// X3 is not abstract and does not override abstract method test() in X3
	);
	this.runNegativeTest( // implement inherited method as abstract with constant
		new String[] {
			"X3a.java",
			"public enum X3a implements I {\n" +
			"	A;\n" +
			"	public abstract void test();\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X3a.java (at line 3)\n" + 
		"	public abstract void test();\n" + 
		"	                     ^^^^^^\n" + 
		"The enum X3a can only define the abstract method test() if it also defines enum constants with corresponding implementations\n" + 
		"----------\n"
		// X3a is not abstract and does not override abstract method test() in X3a
	);
	this.runConformTest( // implement inherited method as abstract with constant body
		new String[] {
			"X3b.java",
			"public enum X3b implements I {\n" +
			"	A() { public void test() {} };\n" +
			"	public abstract void test();\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
	this.runNegativeTest( // implement inherited method as abstract with random constant body
		new String[] {
			"X3c.java",
			"public enum X3c implements I {\n" +
			"	A() { void random() {} };\n" +
			"	public abstract void test();\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X3c.java (at line 2)\n" + 
		"	A() { void random() {} };\n" + 
		"	    ^\n" + 
		"The type new X3c(){} must implement the inherited abstract method X3c.test()\n" + 
		"----------\n"
		// <anonymous X3c$1> is not abstract and does not override abstract method test() in X3c
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83901
public void test074() {
	this.runNegativeTest( // define abstract method
		new String[] {
			"X4.java",
			"public enum X4 {\n" +
			"	;\n" +
			"	public abstract void test();\n" +
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X4.java (at line 3)\n" + 
		"	public abstract void test();\n" + 
		"	                     ^^^^^^\n" + 
		"The enum X4 can only define the abstract method test() if it also defines enum constants with corresponding implementations\n" + 
		"----------\n"
		// X4 is not abstract and does not override abstract method test() in X4
	);
	this.runNegativeTest( // define abstract method with constant
		new String[] {
			"X4a.java",
			"public enum X4a {\n" +
			"	A;\n" +
			"	public abstract void test();\n" +
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X4a.java (at line 3)\n" + 
		"	public abstract void test();\n" + 
		"	                     ^^^^^^\n" + 
		"The enum X4a can only define the abstract method test() if it also defines enum constants with corresponding implementations\n" + 
		"----------\n"
		// X4a is not abstract and does not override abstract method test() in X4a
	);
	this.runConformTest( // define abstract method with constant body
		new String[] {
			"X4b.java",
			"public enum X4b {\n" +
			"	A() { public void test() {} };\n" +
			"	public abstract void test();\n" +
			"}\n"
		},
		""
	);
	this.runNegativeTest( // define abstract method with random constant body
		new String[] {
			"X4c.java",
			"public enum X4c {\n" +
			"	A() { void random() {} };\n" +
			"	public abstract void test();\n" +
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X4c.java (at line 2)\n" + 
		"	A() { void random() {} };\n" + 
		"	    ^\n" + 
		"The type new X4c(){} must implement the inherited abstract method X4c.test()\n" + 
		"----------\n"
		// <anonymous X4c$1> is not abstract and does not override abstract method test() in X4c
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83901
public void test075() {
	this.runNegativeTest( // do not implement inherited method
		new String[] {
			"X5.java",
			"public enum X5 implements I {\n" +
			"	;\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X5.java (at line 1)\n" + 
		"	public enum X5 implements I {\n" + 
		"	            ^^\n" + 
		"The type X5 must implement the inherited abstract method I.test()\n" + 
		"----------\n"
		// X5 is not abstract and does not override abstract method test() in I
	);
	this.runNegativeTest( // do not implement inherited method & have constant with no body
		new String[] {
			"X5a.java",
			"public enum X5a implements I {\n" +
			"	A;\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X5a.java (at line 1)\n" + 
		"	public enum X5a implements I {\n" + 
		"	            ^^^\n" + 
		"The type X5a must implement the inherited abstract method I.test()\n" + 
		"----------\n"
		// X5a is not abstract and does not override abstract method test() in I
	);
	this.runConformTest( // do not implement inherited method & have constant with body
		new String[] {
			"X5b.java",
			"public enum X5b implements I {\n" +
			"	A() { public void test() {} };\n" +
			"	;\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		""
	);
	this.runNegativeTest( // do not implement inherited method & have constant with random body
		new String[] {
			"X5c.java",
			"public enum X5c implements I {\n" +
			"	A() { void random() {} };\n" +
			"	;\n" +
			"	private X5c() {}\n" +
			"}\n" +
			"interface I { void test(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X5c.java (at line 2)\n" + 
		"	A() { void random() {} };\n" + 
		"	    ^\n" + 
		"The type new X5c(){} must implement the inherited abstract method I.test()\n" + 
		"----------\n"
		// <anonymous X5c$1> is not abstract and does not override abstract method test() in I
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=83902
public void test076() { // bridge method needed
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public static void main(String[] args) { ((I) E.A).foo(); }\n" +
			"}\n" +
			"interface I { I foo(); }\n" +
			"enum E implements I {\n" +
			"	A;\n" +
			"	public E foo() {\n" +
			"		System.out.println(\"SUCCESS\");\n" +
			"		return null;\n" +
			"	}\n" +
			"}\n"
		},
		"SUCCESS"
	);
}

public void test077() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		E.A.bar();\n" + 
			"	}\n" + 
			"}\n" + 
			"enum E {\n" + 
			"	A {\n" + 
			"		void bar() {\n" + 
			"			new M();\n" + 
			"		}\n" + 
			"	};\n" + 
			"	abstract void bar();\n" + 
			"	\n" + 
			"	class M {\n" + 
			"		M() {\n" + 
			"			System.out.println(\"SUCCESS\");\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"SUCCESS"
	);
}	

public void test078() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	\n" + 
			"	public static void main(String[] args) {\n" + 
			"		E.A.bar();\n" + 
			"	}\n" + 
			"}\n" + 
			"enum E {\n" + 
			"	A {\n" + 
			"		void bar() {\n" + 
			"			new X(){\n" + 
			"				void baz() {\n" + 
			"					new M();\n" + 
			"				}\n" + 
			"			}.baz();\n" + 
			"		}\n" + 
			"	};\n" + 
			"	abstract void bar();\n" + 
			"	\n" + 
			"	class M {\n" + 
			"		M() {\n" + 
			"			System.out.println(\"SUCCESS\");\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n"
		},
		"SUCCESS"
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=85397
public void test079() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" +
			"	A, B;\n" +
			"	private strictfp X() {}\n" +
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	private strictfp X() {}\n" + 
		"	                 ^^^\n" + 
		"Illegal modifier for the method X.X()\n" + 
		"----------\n"
	);
	this.runConformTest(
		new String[] {
			"X.java",
			"public strictfp enum X {\n" +
			"	A, B;\n" +
			"	private X() {}\n" +
			"}\n"
		},
		""
	);

	String[] expectedOutputs = new String[] {
		"  private strictfp X(java.lang.String arg0, int arg1);\n",
		"  public static strictfp X[] values();\n",
		"  public static strictfp X valueOf(java.lang.String arg0);\n"
	};

	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED);
		
		for (int i = 0, max = expectedOutputs.length; i < max; i++) {
			String expectedOutput = expectedOutputs[i];
			int index = actualOutput.indexOf(expectedOutput);
			if (index == -1 || expectedOutput.length() == 0) {
				System.out.println(Util.displayString(actualOutput, 3));
			}
			if (index == -1) {
				assertEquals("Wrong contents", expectedOutput, actualOutput);
			}
		}
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=87064
public void test080() {
	this.runConformTest(
		new String[] {
			"X.java",
			"interface TestInterface {\n" + 
			"	int test();\n" + 
			"}\n" + 
			"\n" + 
			"public enum X implements TestInterface {\n" + 
			"	TEST {\n" + 
			"		public int test() {\n" + 
			"			return 42;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	ENUM {\n" + 
			"		public int test() {\n" + 
			"			return 37;\n" + 
			"		}\n" + 
			"	};\n" + 
			"} \n"
		},
		""
	);
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87818
public void test081() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo() {\n" +
			"		enum E {}\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	enum E {}\n" + 
		"	     ^\n" + 
		"The member enum E cannot be local\n" + 
		"----------\n");
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88223
public void test082() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	class Y {\n" +
			"		enum E {}\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 3)\n" + 
		"	enum E {}\n" + 
		"	     ^\n" + 
		"The member enum E must be defined inside a static member type\n" + 
		"----------\n");
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	static class Y {\n" +
			"		enum E {}\n" +
			"	}\n" +
			"}"
		},
		"");
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	void foo() {\n" +
			"		class Local {\n" +
			"			enum E {}\n" +
			"		}\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	enum E {}\n" + 
		"	     ^\n" + 
		"The member enum E cannot be local\n" + 
		"----------\n");
}


// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87998 - check no emulation warning
public void test083() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	INPUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return OUTPUT;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	OUTPUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return INPUT;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	INOUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return INOUT;\n" + 
			"		}\n" + 
			"	};\n" + 
			"	X(){}\n" + 
			"  Zork z;\n" +
			"	public abstract X getReverse();\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 21)\n" + 
		"	Zork z;\n" + 
		"	^^^^\n" + 
		"Zork cannot be resolved to a type\n" + 
		"----------\n");
}	
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=87998 - check private constructor generation
public void test084() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	INPUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return OUTPUT;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	OUTPUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return INPUT;\n" + 
			"		}\n" + 
			"	},\n" + 
			"	INOUT {\n" + 
			"		@Override\n" +
			"		public X getReverse() {\n" + 
			"			return INOUT;\n" + 
			"		}\n" + 
			"	};\n" + 
			"	X(){}\n" + 
			"	public abstract X getReverse();\n" + 
			"}\n",
		},
		"");
	
	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	String expectedOutput = 
		"  // Method descriptor #20 (Ljava/lang/String;I)V\n" + 
		"  // Stack: 3, Locals: 3\n" + 
		"  private X(java.lang.String arg0, int arg1);\n"; 
		
	int index = actualOutput.indexOf(expectedOutput);
	if (index == -1 || expectedOutput.length() == 0) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index == -1) {
		assertEquals("unexpected bytecode sequence", expectedOutput, actualOutput);
	}
}	
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88625
public void test085() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Test1 {\n" + 
			"		test11, test12\n" + 
			"	};\n" + 
			"	enum Test2 {\n" + 
			"		test21, test22\n" + 
			"	};\n" + 
			"\n" + 
			"	void foo1(Test1 t1, Test2 t2) {\n" + 
			"		boolean b = t1 == t2;\n" + 
			"	}\n" + 
			"	void foo2(Test1 t1, Object t2) {\n" + 
			"		boolean b = t1 == t2;\n" + 
			"	}\n" + 
			"	void foo3(Test1 t1, Enum t2) {\n" + 
			"		boolean b = t1 == t2;\n" + 
			"	}\n" + 
			"	public static void main(String[] args) {\n" + 
			"		boolean booleanTest = (Test1.test11 == Test2.test22);\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 10)\n" + 
		"	boolean b = t1 == t2;\n" + 
		"	            ^^^^^^^^\n" + 
		"Incompatible operand types X.Test1 and X.Test2\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 15)\n" + 
		"	void foo3(Test1 t1, Enum t2) {\n" + 
		"	                    ^^^^\n" + 
		"Enum is a raw type. References to generic type Enum<E> should be parameterized\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 19)\n" + 
		"	boolean booleanTest = (Test1.test11 == Test2.test22);\n" + 
		"	                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n" + 
		"Incompatible operand types X.Test1 and X.Test2\n" + 
		"----------\n");
}	
public void test086() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		static int foo = 0;\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}	
public void test087() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		interface Foo {}\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}	
public void test088() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"	}\n" + 
			"	Object foo() {\n" + 
			"		return this;\n" + 
			"	}\n" + 
			"\n" + 
			"	static class Sub extends X {\n" + 
			"		@Override\n" + 
			"		Test1 foo() {\n" + 
			"			return Test1.V;\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}		
public void test089() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		protected final Test1 clone() { return V; }\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 5)\n" + 
		"	protected final Test1 clone() { return V; }\n" + 
		"	                      ^^^^^^^\n" + 
		"Cannot override the final method from Enum<X.Test1>\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 5)\n" + 
		"	protected final Test1 clone() { return V; }\n" + 
		"	                      ^^^^^^^\n" + 
		"The method clone() of type X.Test1 should be tagged with @Override since it actually overrides a superclass method\n" + 
		"----------\n");
}			
public void test090() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		public Test1 foo() { return V; }\n" + 
			"	}\n" + 
			"	Zork z;\n" +
			"}\n",
			"java/lang/Object.java",
			"package java.lang;\n" +
			"public class Object {\n" + 
			"	public Object foo() { return this; }\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 5)\n" + 
		"	public Test1 foo() { return V; }\n" + 
		"	             ^^^^^\n" + 
		"The method foo() of type X.Test1 should be tagged with @Override since it actually overrides a superclass method\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 7)\n" + 
		"	Zork z;\n" + 
		"	^^^^\n" + 
		"Zork cannot be resolved to a type\n" + 
		"----------\n");
}
public void test091() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		void foo() {}\n" + 
			"	}\n" + 
			"	class Member<E extends Test1> {\n" + 
			"		void bar(E e) {\n" + 
			"			e.foo();\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}		
public void test092() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		void foo() {}\n" + 
			"	}\n" + 
			"	class Member<E extends Object & Test1> {\n" + 
			"		void bar(E e) {\n" + 
			"			e.foo();\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 7)\n" + 
		"	class Member<E extends Object & Test1> {\n" + 
		"	                                ^^^^^\n" + 
		"The type X.Test1 is not an interface; it cannot be specified as a bounded parameter\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 9)\n" + 
		"	e.foo();\n" + 
		"	  ^^^\n" + 
		"The method foo() is undefined for the type E\n" + 
		"----------\n");
}
// check wildcard can extend Enum superclass
public void test093() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public class X {\n" + 
			"\n" + 
			"	enum Test1 {\n" + 
			"		V;\n" + 
			"		void foo() {}\n" + 
			"	}\n" + 
			"	class Member<E extends Test1> {\n" + 
			"		E e;\n" + 
			"		void bar(Member<? extends Test1> me) {\n" + 
			"		}\n" + 
			"	}\n" + 
			"}\n",
		},
		"");
}		
// check super bit is set
public void test094() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"}\n",
		},
		"");
	
	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	String expectedOutput = 
		"// Signature: Ljava/lang/Enum<LX;>;\n" + 
		"public final enum X {\n" + 
		"  \n" + 
		"  // Field descriptor #6 [LX;\n" + 
		"  private static final synthetic X[] ENUM$VALUES;\n" + 
		"  \n" + 
		"  // Method descriptor #8 ()V\n" + 
		"  // Stack: 1, Locals: 0\n" + 
		"  static {};\n" + 
		"    0  iconst_0\n" + 
		"    1  anewarray X [1]\n" + 
		"    4  putstatic X.ENUM$VALUES : X[] [10]\n" + 
		"    7  return\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"  \n" + 
		"  // Method descriptor #15 (Ljava/lang/String;I)V\n" + 
		"  // Stack: 3, Locals: 3\n" + 
		"  private X(java.lang.String arg0, int arg1);\n" + 
		"    0  aload_0 [this]\n" + 
		"    1  aload_1\n" + 
		"    2  iload_2\n" + 
		"    3  invokespecial java.lang.Enum(java.lang.String, int) [16]\n" + 
		"    6  return\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"      Local variable table:\n" + 
		"        [pc: 0, pc: 7] local: this index: 0 type: X\n" + 
		"  \n" + 
		"  // Method descriptor #21 ()[LX;\n" + 
		"  // Stack: 5, Locals: 3\n" + 
		"  public static X[] values();\n" + 
		"     0  getstatic X.ENUM$VALUES : X[] [10]\n" + 
		"     3  dup\n" + 
		"     4  astore_0\n" + 
		"     5  iconst_0\n" + 
		"     6  aload_0\n" + 
		"     7  arraylength\n" + 
		"     8  dup\n" + 
		"     9  istore_1\n" + 
		"    10  anewarray X [1]\n" + 
		"    13  dup\n" + 
		"    14  astore_2\n" + 
		"    15  iconst_0\n" + 
		"    16  iload_1\n" + 
		"    17  invokestatic java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int) : void [22]\n" + 
		"    20  aload_2\n" + 
		"    21  areturn\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"  \n" + 
		"  // Method descriptor #29 (Ljava/lang/String;)LX;\n" + 
		"  // Stack: 2, Locals: 1\n" + 
		"  public static X valueOf(java.lang.String arg0);\n" + 
		"     0  ldc <Class X> [1]\n" + 
		"     2  aload_0\n" + 
		"     3  invokestatic java.lang.Enum.valueOf(java.lang.Class, java.lang.String) : java.lang.Enum [30]\n" + 
		"     6  checkcast X [1]\n" + 
		"     9  areturn\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n"; 
		
	int index = actualOutput.indexOf(expectedOutput);
	if (index == -1 || expectedOutput.length() == 0) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index == -1) {
		assertEquals("unexpected bytecode sequence", expectedOutput, actualOutput);
	}
}
public void test095() { // check missing abstract cases from multiple interfaces
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X implements I, J { \n" + 
			"	ROUGE;\n" + 
			"}\n" +
			"interface I { void foo(); }\n" +
			"interface J { void foo(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 1)\n" + 
		"	public enum X implements I, J { \n" + 
		"	            ^\n" + 
		"The type X must implement the inherited abstract method I.foo()\n" + 
		"----------\n");
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X implements I, J { \n" + 
			"	ROUGE;\n" + 
			"	public void foo() {}\n" + 
			"}\n" +
			"interface I { void foo(int i); }\n" +
			"interface J { void foo(); }\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 1)\n" + 
		"	public enum X implements I, J { \n" + 
		"	            ^\n" + 
		"The type X must implement the inherited abstract method I.foo(int)\n" + 
		"----------\n");
}
public void test096() { // check for raw vs. parameterized parameter types
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X implements I { \n" + 
			"	ROUGE;\n" + 
			"	public void foo(A a) {}\n" + 
			"}\n" +
			"interface I { void foo(A<String> a); }\n" +
			"class A<T> {}\n"
		},
		"");
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X implements I { \n" + 
			"	ROUGE { public void foo(A a) {} }\n" +
			"	;\n" + 
			"}\n" +
			"interface I { void foo(A<String> a); }\n" +
			"class A<T> {}\n"
		},
		"");
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X implements I { \n" + 
			"	ROUGE;\n" + 
			"	public void foo(A<String> a) {}\n" + 
			"}\n" +
			"interface I { void foo(A a); }\n" +
			"class A<T> {}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 1)\n" + 
		"	public enum X implements I { \n" + 
		"	            ^\n" + 
		"The type X must implement the inherited abstract method I.foo(A)\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 3)\n" + 
		"	public void foo(A<String> a) {}\n" + 
		"	            ^^^^^^^^^^^^^^^^\n" + 
		"Name clash: The method foo(A<String>) of type X has the same erasure as foo(A) of type I but does not override it\n" + 
		"----------\n" + 
		"3. WARNING in X.java (at line 5)\n" + 
		"	interface I { void foo(A a); }\n" + 
		"	                       ^\n" + 
		"A is a raw type. References to generic type A<T> should be parameterized\n" + 
		"----------\n");
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=89982
public void test097() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"public class E {\n" + 
			"	enum Numbers { ONE, TWO, THREE }\n" + 
			"	static final String BLANK = \"    \";\n" + 
			"	void foo(Colors color) {\n" + 
			"		switch (color) {\n" + 
			"			case BLUE:\n" + 
			"			case RED:\n" + 
			"				break;\n" + 
			"		} \n" + 
			"	}\n" + 
			"}\n" + 
			"/**\n" + 
			" * Enumeration of some basic colors.\n" + 
			" */\n" + 
			"enum Colors {\n" + 
			"	BLACK,\n" + 
			"	WHITE,\n" + 
			"	RED  \n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in E.java (at line 6)\n" + 
		"	case BLUE:\n" + 
		"	     ^^^^\n" + 
		"BLUE cannot be resolved or is not a field\n" + 
		"----------\n");
}			
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=89982 - variation
public void test098() {
	this.runNegativeTest(
		new String[] {
			"E.java",
			"public class E {\n" + 
			"	enum Numbers { ONE, TWO, THREE }\n" + 
			"	static final String BLANK = \"    \";\n" + 
			"	void foo(Colors color) {\n" + 
			"		switch (color) {\n" + 
			"		} \n" + 
			"	}\n" + 
			"}\n" + 
			"/**\n" + 
			" * Enumeration of some basic colors.\n" + 
			" */\n" + 
			"enum Colors {\n" + 
			"	BLACK,\n" + 
			"	WHITE,\n" + 
			"	RED;  \n" + 
			"  Zork z;\n" +
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in E.java (at line 5)\n" + 
		"	switch (color) {\n" + 
		"	        ^^^^^\n" + 
		"The enum constant Colors.BLACK has no corresponding case label\n" + 
		"----------\n" + 
		"2. WARNING in E.java (at line 5)\n" + 
		"	switch (color) {\n" + 
		"	        ^^^^^\n" + 
		"The enum constant Colors.RED has no corresponding case label\n" + 
		"----------\n" + 
		"3. WARNING in E.java (at line 5)\n" + 
		"	switch (color) {\n" + 
		"	        ^^^^^\n" + 
		"The enum constant Colors.WHITE has no corresponding case label\n" + 
		"----------\n" + 
		"4. ERROR in E.java (at line 16)\n" + 
		"	Zork z;\n" + 
		"	^^^^\n" + 
		"Zork cannot be resolved to a type\n" + 
		"----------\n");
}			
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=89274
public void test099() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"class A<T> {\n" + 
			"	enum E {\n" + 
			"		v1, v2;\n" + 
			"	}\n" + 
			"}\n" + 
			"\n" + 
			"public class X extends A<Integer> {\n" + 
			"	void a(A.E e) {\n" + 
			"		b(e); // no unchecked warning\n" + 
			"	}\n" + 
			"\n" + 
			"	void b(E e) {\n" + 
			"		A<Integer>.E e1 = e;\n" + 
			"	}\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 13)\n" + 
		"	A<Integer>.E e1 = e;\n" + 
		"	^^^^^^^^^^^^\n" + 
		"The member type A<Integer>.E cannot be qualified with a parameterized type, since it is static. Remove arguments from qualifying type A<Integer>\n" + 
		"----------\n");
}				
/* from JLS
"It is a compile-time error to reference a static field of an enum type
that is not a compile-time constant (15.28) from constructors, instance
initializer blocks, or instance variable initializer expressions of that
type.  It is a compile-time error for the constructors, instance initializer
blocks, or instance variable initializer expressions of an enum constant e1
to refer to itself or an enum constant of the same type that is declared to
the right of e1."
	*/
public void test100() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"\n" + 
			"	anEnumValue {\n" + 
			"		private final X thisOne = anEnumValue;\n" + 
			"\n" + 
			"		@Override String getMessage() {\n" + 
			"			return \"Here is what thisOne gets assigned: \" + thisOne;\n" + 
			"		}\n" + 
			"	};\n" + 
			"\n" + 
			"	abstract String getMessage();\n" + 
			"\n" + 
			"	public static void main(String[] args) {\n" + 
			"		System.out.println(anEnumValue.getMessage());\n" + 
			"		System.out.println(\"SUCCESS\");\n" + 
			"	}\n" + 
			"\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	private final X thisOne = anEnumValue;\n" + 
		"	                          ^^^^^^^^^^^\n" + 
		"Cannot refer to the static enum field X.anEnumValue within an initializer\n" + 
		"----------\n");
}	
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=91761
public void test101() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"interface Foo {\n" + 
			"  public boolean bar();\n" + 
			"}\n" + 
			"enum BugDemo {\n" + 
			"  CONSTANT(new Foo() {\n" + 
			"    public boolean bar() {\n" + 
			"      Zork z;\n" + 
			"      return true;\n" + 
			"    }\n" + 
			"  });\n" + 
			"  BugDemo(Foo foo) {\n" + 
			"  }\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 7)\n" + 
		"	Zork z;\n" + 
		"	^^^^\n" + 
		"Zork cannot be resolved to a type\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=90775
public void test102() {
    this.runNegativeTest(
        new String[] {
            "X.java",
			"import java.util.*;\n" + 
			"\n" + 
			"public class X <T> {\n" + 
			"	enum SomeEnum {\n" + 
			"		A, B;\n" + 
			"		static SomeEnum foo() {\n" + 
			"			return null;\n" + 
			"		}\n" + 
			"	}\n" + 
			"	Enum<SomeEnum> e = SomeEnum.A;\n" + 
			"		\n" + 
			"	Set<SomeEnum> set1 = EnumSet.of(SomeEnum.A);\n" + 
			"	Set<SomeEnum> set2 = EnumSet.of(SomeEnum.foo());\n" + 
			"	\n" + 
			"	Foo<Bar> foo = null;\n" + 
			"}\n" + 
			"class Foo <U extends Foo<U>> {\n" + 
			"}\n" + 
			"class Bar extends Foo {\n" + 
			"}\n",
        },
		"----------\n" + 
		"1. ERROR in X.java (at line 15)\n" + 
		"	Foo<Bar> foo = null;\n" + 
		"	    ^^^\n" + 
		"Bound mismatch: The type Bar is not a valid substitute for the bounded parameter <U extends Foo<U>> of the type Foo<U>\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 19)\n" + 
		"	class Bar extends Foo {\n" + 
		"	                  ^^^\n" + 
		"Foo is a raw type. References to generic type Foo<U> should be parameterized\n" + 
		"----------\n");
}		
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=93396
public void test103() {
    this.runNegativeTest(
        new String[] {
            "BadEnum.java",
            "public class BadEnum {\n" + 
            "  public interface EnumInterface<T extends Object> {\n" + 
            "    public T getMethod();\n" + 
            "  }\n" + 
            "  public enum EnumClass implements EnumInterface<String> {\n" + 
            "    ENUM1 { public String getMethod() { return \"ENUM1\";} },\n" + 
            "    ENUM2 { public String getMethod() { return \"ENUM2\";} };\n" + 
            "  }\n" + 
            "}\n" + 
            "}\n",
        },
        "----------\n" + 
        "1. ERROR in BadEnum.java (at line 10)\n" + 
        "	}\n" + 
        "	^\n" + 
        "Syntax error on token \"}\", delete this token\n" + 
        "----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=90215
public void test104() {
    this.runConformTest(
        new String[] {
            "p/Placeholder.java",
			"package p;\n" + 
			"\n" + 
			"public class Placeholder {\n" + 
			"    public static void main(String... argv) {\n" + 
			"        ClassWithBadEnum.EnumClass constant = ClassWithBadEnum.EnumClass.ENUM1;\n" + // forward ref
			"        ClassWithBadEnum.main(argv);\n" + 
			"	}\n" + 
			"}    \n" + 
			"\n",
            "p/ClassWithBadEnum.java",
			"package p;\n" + 
			"\n" + 
			"public class ClassWithBadEnum {\n" + 
			"	public interface EnumInterface<T extends Object> {\n" + 
			"	    public T getMethod();\n" + 
			"	}\n" + 
			"\n" + 
			"	public enum EnumClass implements EnumInterface<String> {\n" + 
			"		ENUM1 { public String getMethod() { return \"ENUM1\";} },\n" + 
			"		ENUM2 { public String getMethod() { return \"ENUM2\";} };\n" + 
			"	}\n" + 
			"	private EnumClass enumVar; \n" + 
			"	public EnumClass getEnumVar() {\n" + 
			"		return enumVar;\n" + 
			"	}\n" + 
			"	public void setEnumVar(EnumClass enumVar) {\n" + 
			"		this.enumVar = enumVar;\n" + 
			"	}\n" + 
			"\n" + 
			"	public static void main(String... argv) {\n" + 
			"		int a = 1;\n" + 
			"		ClassWithBadEnum badEnum = new ClassWithBadEnum();\n" + 
			"		badEnum.setEnumVar(ClassWithBadEnum.EnumClass.ENUM1);\n" + 
			"		// Should fail if bug manifests itself because there will be two getInternalValue() methods\n" + 
			"		// one returning an Object instead of a String\n" + 
			"		String s3 = badEnum.getEnumVar().getMethod();\n" + 
			"		System.out.println(s3);\n" + 
			"	}\n" + 
			"}  \n",
        },
        "ENUM1");
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test105() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"    public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"Black"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {BLACK, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"Black",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test106() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"    public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        }\n" +
				"		 System.out.print(\"SUCCESS\");\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"SUCCESS"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {BLACK, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"SUCCESS",
		null,
		false,
		null,
		null,
		null);	
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test107() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"    public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"BlackBlack"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color { BLACK }"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"BlackBlack",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test108() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"    public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        default:\n" +
				"            System.out.print(\"Error\");\n" +
				"            break;\n" +
				"        }\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"Black"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {RED, GREEN, YELLOW, BLACK, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"Black",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test109() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"    public static void main(String[] args) {\n" +
				"		Color c = null;\n" +
				"		 try {\n" +
				"        	c = BLACK;\n" +
				"		} catch(NoSuchFieldError e) {\n" +
				"			System.out.print(\"SUCCESS\");\n" +
				"			return;\n" +
				"		}\n" +
				"      	switch(c) {\n" +
				"       	case BLACK:\n" +
				"          	System.out.print(\"Black\");\n" +
				"          	break;\n" +
				"       	case WHITE:\n" +
				"          	System.out.print(\"White\");\n" +
				"          	break;\n" +
				"      	}\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"Black"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {RED, GREEN, YELLOW, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"SUCCESS",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test110() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"	public int[] $SWITCH_TABLE$pack$Color;\n" +
				"	public int[] $SWITCH_TABLE$pack$Color() { return null; }\n" +
				"   public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"Black"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {BLACK, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"Black",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88395
public void test111() {
	this.runConformTest(
			new String[] {
				"pack/X.java",
				"package pack;\n" +
				"import static pack.Color.*;\n" +
				"public class X {\n" +
				"	public int[] $SWITCH_TABLE$pack$Color;\n" +
				"	public int[] $SWITCH_TABLE$pack$Color() { return null; }\n" +
				"   public static void main(String[] args) {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"		 foo();\n" +
				"    }\n" +
				"   public static void foo() {\n" +
				"        Color c = BLACK;\n" +
				"        switch(c) {\n" +
				"        case BLACK:\n" +
				"            System.out.print(\"Black\");\n" +
				"            break;\n" +
				"        case WHITE:\n" +
				"            System.out.print(\"White\");\n" +
				"            break;\n" +
				"        }\n" +
				"    }\n" +
				"}",
				"pack/Color.java",
				"package pack;\n" + 
				"enum Color {WHITE, BLACK}"
			},
			"BlackBlack"
		);
	
	this.runConformTest(
		new String[] {
			"pack/Color.java",
			"package pack;\n" + 
			"enum Color {BLACK, WHITE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"pack/X.java",
		"BlackBlack",
		null,
		false,
		null,
		null,
		null);	
}

// https://bugs.eclipse.org/bugs/show_bug.cgi?id=97247
public void test112() {
	this.runConformTest(
		new String[] {
			"com/annot/Foo.java",
			"package com.annot;\n" + 
			"\n" + 
			"import static com.annot.TestType.*;\n" +
			"\n" +
			"public class Foo {\n" +
			"	@Test(type=PERFORMANCE)\n" +
			"	public void testBar() throws Exception {\n" +
			"		Test annotation = this.getClass().getMethod(\"testBar\").getAnnotation(Test.class);\n" +
			"		switch (annotation.type()) {\n" +
			"			case PERFORMANCE:\n" +
			"				System.out.println(PERFORMANCE);\n" +
			"				break;\n" +
			"			case CORRECTNESS:\n" +
			"				System.out.println(CORRECTNESS);\n" +
			"				break;\n" +
			"		}		\n" +
			"	}\n" +
			"}",
			"com/annot/Test.java",
			"package com.annot;\n" +
			"\n" +
			"import static com.annot.TestType.CORRECTNESS;\n" +
			"import static java.lang.annotation.ElementType.METHOD;\n" +
			"\n" +
			"import java.lang.annotation.Target;\n" +
			"\n" +
			"@Target(METHOD)\n" +
			"public @interface Test {\n" +
			"	TestType type() default CORRECTNESS;\n" +
			"}",
			"com/annot/TestType.java",
			"package com.annot;\n" +
			"\n" +
			"public enum TestType {\n" +
			"	CORRECTNESS,\n" +
			"	PERFORMANCE\n" +
			"}"
		},
		""
	);
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=93789
public void test113() {
    this.runNegativeTest(
        new String[] {
            "X.java",
			"enum BugDemo {\n" + 
			"	FOO() {\n" + 
			"		static int bar;\n" + 
			"	}\n" + 
			"}\n",
        },
		"----------\n" + 
		"1. WARNING in X.java (at line 3)\n" + 
		"	static int bar;\n" + 
		"	           ^^^\n" + 
		"The field new BugDemo(){}.bar is never read locally\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 3)\n" + 
		"	static int bar;\n" + 
		"	           ^^^\n" + 
		"The field bar cannot be declared static; static fields can only be declared in static or top level types\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=99428 and https://bugs.eclipse.org/bugs/show_bug.cgi?id=99655
public void test114() {
    this.runConformTest(
        new String[] {
            "EnumTest.java",
			"import java.lang.reflect.*;\n" + 
			"import java.lang.annotation.*;\n" + 
			"@ExpectedModifiers(Modifier.FINAL)\n" + 
			"public enum EnumTest {\n" + 
			"	X(255);\n" + 
			"	EnumTest(int r) {}\n" + 
			"	public static void main(String argv[]) throws Exception {\n" + 
			"		test(\"EnumTest\");\n" + 
			"		test(\"EnumTest$EnumA\");\n" + 
			"		test(\"EnumTest$EnumB\");\n" + 
			"		test(\"EnumTest$EnumB2\");\n" + 
			"		test(\"EnumTest$EnumB3\");\n" + 
			// TODO (kent) need verifier to detect when an Enum should be tagged as abstract
			//"		test(\"EnumTest$EnumC\");\n" + 
			//"		test(\"EnumTest$EnumC2\");\n" + 
			"		test(\"EnumTest$EnumC3\");\n" + 
			"		test(\"EnumTest$EnumD\");\n" + 
			"	}\n" + 
			"	static void test(String className) throws Exception {\n" + 
			"		Class c = Class.forName(className);\n" + 
			"		ExpectedModifiers em = (ExpectedModifiers) c.getAnnotation(ExpectedModifiers.class);\n" + 
			"		if (em != null) {\n" + 
			"			int classModifiers = c.getModifiers();\n" + 
			"			int expected = em.value();\n" + 
			"			if (expected != (classModifiers & (Modifier.ABSTRACT|Modifier.FINAL|Modifier.STATIC))) {\n" + 
			"				if ((expected & Modifier.ABSTRACT) != (classModifiers & Modifier.ABSTRACT))\n" + 
			"					System.out.println(\"FAILED ABSTRACT: \" + className);\n" + 
			"				if ((expected & Modifier.FINAL) != (classModifiers & Modifier.FINAL))\n" + 
			"					System.out.println(\"FAILED FINAL: \" + className);\n" + 
			"				if ((expected & Modifier.STATIC) != (classModifiers & Modifier.STATIC))\n" + 
			"					System.out.println(\"FAILED STATIC: \" + className);\n" + 
			"			}\n" + 
			"		}\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.FINAL|Modifier.STATIC)\n" + 
			"	enum EnumA {\n" + 
			"		A;\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.STATIC)\n" + 
			"	enum EnumB {\n" + 
			"		B {\n" + 
			"			int value() { return 1; }\n" + 
			"		};\n" + 
			"		int value(){ return 0; }\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.STATIC)\n" + 
			"	enum EnumB2 {\n" + 
			"		B2 {};\n" + 
			"		int value(){ return 0; }\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.FINAL|Modifier.STATIC)\n" + 
			"	enum EnumB3 {\n" + 
			"		B3;\n" + 
			"		int value(){ return 0; }\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.STATIC)\n" + 
			"	enum EnumC implements I {\n" + 
			"		C {\n" + 
			"			int value() { return 1; }\n" + 
			"		};\n" + 
			"		int value(){ return 0; }\n" + 
			"		public void foo(){}\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.STATIC)\n" + 
			"	enum EnumC2 implements I {\n" + 
			"		C2 {};\n" + 
			"		int value(){ return 0; }\n" + 
			"		public void foo(){}\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.FINAL|Modifier.STATIC)\n" + 
			"	enum EnumC3 implements I {\n" + 
			"		C3;\n" + 
			"		int value(){ return 0; }\n" + 
			"		public void foo(){}\n" + 
			"	}\n" + 
			"	@ExpectedModifiers(Modifier.ABSTRACT|Modifier.STATIC)\n" + 
			"	enum EnumD {\n" + 
			"		D {\n" + 
			"			int value() { return 1; }\n" + 
			"		};\n" + 
			"		abstract int value();\n" + 
			"	}\n" + 
			"}\n" +
			"interface I {\n" +
			"	void foo();\n" + 
			"}\n" + 
			"@Retention(RetentionPolicy.RUNTIME)\n" + 
			"@interface ExpectedModifiers {\n" + 
			"	int value();\n" + 
			"}"
		},
		"");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=101713
public void test115() {
    this.runNegativeTest(
        new String[] {
            "X.java",
			"public enum X {\n" + 
			"	VALUE;\n" + 
			"\n" + 
			"	static int ASD;\n" + 
			"	final static int CST = 0;\n" + 
			"	\n" + 
			"	private X() {\n" + 
			"		VALUE = null;\n" + 
			"		ASD = 5;\n" + 
			"		X.VALUE = null;\n" + 
			"		X.ASD = 5;\n" + 
			"		\n" + 
			"		System.out.println(CST);\n" + 
			"	}\n" + 
			"}\n",
        },
		"----------\n" + 
		"1. ERROR in X.java (at line 8)\n" + 
		"	VALUE = null;\n" + 
		"	^^^^^\n" + 
		"Cannot refer to the static enum field X.VALUE within an initializer\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	VALUE = null;\n" + 
		"	^^^^^\n" + 
		"The final field X.VALUE cannot be assigned\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 9)\n" + 
		"	ASD = 5;\n" + 
		"	^^^\n" + 
		"Cannot refer to the static enum field X.ASD within an initializer\n" + 
		"----------\n" + 
		"4. ERROR in X.java (at line 10)\n" + 
		"	X.VALUE = null;\n" + 
		"	  ^^^^^\n" + 
		"The final field X.VALUE cannot be assigned\n" + 
		"----------\n");
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=101713 - variation
public void test116() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	BLEU, \n" + 
			"	BLANC, \n" + 
			"	ROUGE;\n" + 
			"	{\n" + 
			"		BLEU = null;\n" + 
			"	}\n" + 
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 6)\n" + 
		"	BLEU = null;\n" + 
		"	^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 6)\n" + 
		"	BLEU = null;\n" + 
		"	^^^^\n" + 
		"The final field X.BLEU cannot be assigned\n" + 
		"----------\n");
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=101713 - variation
public void test117() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X { \n" + 
			"	BLEU, \n" + 
			"	BLANC, \n" + 
			"	ROUGE;\n" + 
			"	{\n" + 
			"		X x = BLEU.BLANC; // ko\n" + 
			"		X x2 = BLEU; // ko\n" + 
			"	}\n" + 
			"	static {\n" + 
			"		X x = BLEU.BLANC; // ok\n" + 
			"		X x2 = BLEU; // ok\n" + 
			"	}	\n" + 
			"	X dummy = BLEU; // ko\n" + 
			"	static X DUMMY = BLANC; // ok\n" + 
			"	X() {\n" + 
			"		X x = BLEU.BLANC; // ko\n" + 
			"		X x2 = BLEU; // ko\n" + 
			"	}\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 6)\n" + 
		"	X x = BLEU.BLANC; // ko\n" + 
		"	      ^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n" + 
		"2. WARNING in X.java (at line 6)\n" + 
		"	X x = BLEU.BLANC; // ko\n" + 
		"	           ^^^^^\n" + 
		"The static field X.BLANC should be accessed in a static way\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 7)\n" + 
		"	X x2 = BLEU; // ko\n" + 
		"	       ^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n" + 
		"4. WARNING in X.java (at line 10)\n" + 
		"	X x = BLEU.BLANC; // ok\n" + 
		"	           ^^^^^\n" + 
		"The static field X.BLANC should be accessed in a static way\n" + 
		"----------\n" + 
		"5. ERROR in X.java (at line 13)\n" + 
		"	X dummy = BLEU; // ko\n" + 
		"	          ^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n" + 
		"6. ERROR in X.java (at line 16)\n" + 
		"	X x = BLEU.BLANC; // ko\n" + 
		"	      ^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n" + 
		"7. WARNING in X.java (at line 16)\n" + 
		"	X x = BLEU.BLANC; // ko\n" + 
		"	           ^^^^^\n" + 
		"The static field X.BLANC should be accessed in a static way\n" + 
		"----------\n" + 
		"8. ERROR in X.java (at line 17)\n" + 
		"	X x2 = BLEU; // ko\n" + 
		"	       ^^^^\n" + 
		"Cannot refer to the static enum field X.BLEU within an initializer\n" + 
		"----------\n");
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=102265
public void test118() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"import java.util.ArrayList;\n" + 
			"\n" + 
			"public enum X {\n" + 
			"		 one,\n" + 
			"		 two;\n" + 
			"		 \n" + 
			"		 static ArrayList someList;\n" + 
			"		 \n" + 
			"		 private X() {\n" + 
			"		 		 if (someList == null) {\n" + 
			"		 		 		 someList = new ArrayList();\n" + 
			"		 		 }\n" + 
			"		 }\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 7)\n" + 
		"	static ArrayList someList;\n" + 
		"	       ^^^^^^^^^\n" + 
		"ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 10)\n" + 
		"	if (someList == null) {\n" + 
		"	    ^^^^^^^^\n" + 
		"Cannot refer to the static enum field X.someList within an initializer\n" + 
		"----------\n" + 
		"3. ERROR in X.java (at line 11)\n" + 
		"	someList = new ArrayList();\n" + 
		"	^^^^^^^^\n" + 
		"Cannot refer to the static enum field X.someList within an initializer\n" + 
		"----------\n" + 
		"4. WARNING in X.java (at line 11)\n" + 
		"	someList = new ArrayList();\n" + 
		"	               ^^^^^^^^^\n" + 
		"ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized\n" + 
		"----------\n");
}		
public void test119() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	BLEU, BLANC, ROUGE;\n" + 
			"	final static int CST = 0;\n" + 
			"    enum Member {\n" + 
			"    	;\n" + 
			"        Object obj1 = CST;\n" + 
			"        Object obj2 = BLEU;\n" + 
			"    }\n" + 
			"}\n"
		},
		"");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=102213
public void test120() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"\n" + 
			"	A() {\n" + 
			"		final X a = A;\n" + 
			"		final X a2 = B.A;\n" + 
			"		@Override void foo() {\n" + 
			"			System.out.println(String.valueOf(a));\n" + 
			"			System.out.println(String.valueOf(a2));\n" + 
			"		}\n" + 
			"	},\n" + 
			"	B() {\n" + 
			"		@Override void foo(){}\n" + 
			"	};\n" + 
			"	abstract void foo();\n" + 
			"\n" + 
			"	public static void main(String[] args) {\n" + 
			"		A.foo();\n" + 
			"	}\n" + 
			"}\n"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	final X a = A;\n" + 
		"	            ^\n" + 
		"Cannot refer to the static enum field X.A within an initializer\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 5)\n" + 
		"	final X a2 = B.A;\n" + 
		"	             ^\n" + 
		"Cannot refer to the static enum field X.B within an initializer\n" + 
		"----------\n" + 
		"3. WARNING in X.java (at line 5)\n" + 
		"	final X a2 = B.A;\n" + 
		"	               ^\n" + 
		"The static field X.A should be accessed in a static way\n" + 
		"----------\n");
}			
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=92165
public void test121() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"\n" + 
			"	UNKNOWN();\n" + 
			"\n" + 
			"	private static String error;\n" + 
			"\n" + 
			"	{\n" + 
			"		error = \"error\";\n" + 
			"	}\n" + 
			"\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. WARNING in X.java (at line 5)\n" + 
		"	private static String error;\n" + 
		"	                      ^^^^^\n" + 
		"The field X.error is never read locally\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 8)\n" + 
		"	error = \"error\";\n" + 
		"	^^^^^\n" + 
		"Cannot refer to the static enum field X.error within an initializer\n" + 
		"----------\n");
}

//https://bugs.eclipse.org/bugs/show_bug.cgi?id=105592
public void test122() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"public class X {\n" +
			"	public enum State {\n" +
			"		NORMAL\n" +
			"	}\n" +
			"	public void foo() {\n" +
			"		State state = State.NORMAL;\n" +
			"		switch (state) {\n" +
			"		case (NORMAL) :\n" +
			"			System.out.println(State.NORMAL);\n" +
			"			break;\n" +
			"		}\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 8)\n" + 
		"	case (NORMAL) :\n" + 
		"	     ^^^^^^^^\n" + 
		"Enum constants cannot be surrounded by parenthesis\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=110403
public void test123() {
	this.runNegativeTest(
		new String[] {
			"Foo.java",
			"enum Foo {\n" +
			" A(0);\n" +
			" Foo(int x) {\n" +
			"    t[0]=x;\n" +
			" }\n" +
			" private static final int[] t = new int[12];\n" +
			"}",
		},
		"----------\n" + 
		"1. ERROR in Foo.java (at line 4)\n" + 
		"	t[0]=x;\n" + 
		"	^\n" + 
		"Cannot refer to the static enum field Foo.t within an initializer\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=1101417
public void test124() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			" public enum X {\n" + 
			"  max {\n" + 
			"   { \n" + 
			"     val=3;  \n" + 
			"   }         \n" + 
			"   @Override public String toString() {\n" + 
			"     return Integer.toString(val);\n" + 
			"   }\n" + 
			"  }; \n" + 
			"  {\n" + 
			"    val=2;\n" + 
			"  }\n" + 
			"  private int val; \n" + 
			"  public static void main(String[] args) {\n" + 
			"    System.out.println(max); // 3\n" + 
			"  }\n" + 
			"}\n",
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 4)\n" + 
		"	val=3;  \n" + 
		"	^^^\n" + 
		"Cannot make a static reference to the non-static field val\n" + 
		"----------\n" + 
		"2. ERROR in X.java (at line 7)\n" + 
		"	return Integer.toString(val);\n" + 
		"	                        ^^^\n" + 
		"Cannot make a static reference to the non-static field val\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=112231
public void test125() {
	this.runNegativeTest(
		new String[] {
			"X.java",
			"\n" + 
			"public class X {\n" + 
			"	interface I {\n" + 
			"		int values();\n" + 
			"		enum E implements I {\n" + 
			"			A, B, C;\n" +
			"		}\n" +
			"	}\n" +
			"}"
		},
		"----------\n" + 
		"1. ERROR in X.java (at line 5)\n" + 
		"	enum E implements I {\n" + 
		"	     ^\n" + 
		"This static method cannot hide the instance method from X.I\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=126087
public void test126() {
	this.runConformTest(
		new String[] {
			"X.java",
			"  public class X {\n" + 
			"    enum NoValues {}\n" + 
			"    public static void main(String[] args) {\n" + 
			"      System.out.println(\"[\"+NoValues.values().length+\"]\");\n" + 
			"    }\n" + 
			"  }\n"
		},
		"[0]");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=126087
public void test127() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"	VALUE {\n" + 
			"		void foo() {\n" + 
			"		};\n" + 
			"	};\n" + 
			"	abstract void foo();\n" + 
			"    public static void main(String[] args) {\n" + 
			"      System.out.println(\"[\"+X.values().length+\"]\");\n" + 
			"    }\n" + 
			"}"
		},
		"[1]");
	
	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	String expectedOutput = 
		"  private static final synthetic X[] ENUM$VALUES;\n"; 
		
	int index = actualOutput.indexOf(expectedOutput);
	if (index == -1 || expectedOutput.length() == 0) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index == -1) {
		assertEquals("unexpected bytecode sequence", expectedOutput, actualOutput);
	}
	
	disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X$1.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	expectedOutput = 
		"ENUM$VALUES"; 
		
	index = actualOutput.indexOf(expectedOutput);
	if (index != -1) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index != -1) {
		assertTrue("Must not have field ENUM$VALUES", false);
	}
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=127766
public void test128() {
	Map options = this.getCompilerOptions();
	options.put(CompilerOptions.OPTION_ReportRawTypeReference, CompilerOptions.IGNORE);
	options.put(CompilerOptions.OPTION_ReportMissingSerialVersion, CompilerOptions.IGNORE);

	this.runNegativeTest(
         new String[] {
        		 "X.java",
        		 "public class X {\n" + 
        		 "	public static void main( String[] args) {\n" + 
        		 "		Enum e = new Enum(\"foo\", 2) {\n" + 
        		 "			public int compareTo( Object o) {\n" + 
        		 "				return 0;\n" + 
        		 "			}\n" + 
        		 "		};\n" + 
        		 "		System.out.println(e);\n" + 
        		 "	}\n" + 
        		 "}",
         },
         "----------\n" + 
         "1. ERROR in X.java (at line 3)\n" + 
         "	Enum e = new Enum(\"foo\", 2) {\n" + 
         "	             ^^^^\n" + 
         "The type new Enum(){} may not subclass Enum explicitly\n" + 
         "----------\n",
         null,
         true,
         options);
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=141155
public void test129() {
	this.runConformTest(
		new String[] {
			"X.java",
			"public enum X {\n" + 
			"        A, B, C;\n" + 
			"}\n",
		},
		"");
	
	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	String expectedOutput = 
		"// Signature: Ljava/lang/Enum<LX;>;\n" + 
		"public final enum X {\n" + 
		"  \n" + 
		"  // Field descriptor #6 LX;\n" + 
		"  public static final enum X A;\n" + 
		"  \n" + 
		"  // Field descriptor #6 LX;\n" + 
		"  public static final enum X B;\n" + 
		"  \n" + 
		"  // Field descriptor #6 LX;\n" + 
		"  public static final enum X C;\n" + 
		"  \n" + 
		"  // Field descriptor #10 [LX;\n" + 
		"  private static final synthetic X[] ENUM$VALUES;\n" + 
		"  \n" + 
		"  // Method descriptor #12 ()V\n" + 
		"  // Stack: 4, Locals: 0\n" + 
		"  static {};\n" + 
		"     0  new X [1]\n" + 
		"     3  dup\n" + 
		"     4  ldc <String \"A\"> [14]\n" + 
		"     6  iconst_0\n" + 
		"     7  invokespecial X(java.lang.String, int) [15]\n" + 
		"    10  putstatic X.A : X [19]\n" + 
		"    13  new X [1]\n" + 
		"    16  dup\n" + 
		"    17  ldc <String \"B\"> [21]\n" + 
		"    19  iconst_1\n" + 
		"    20  invokespecial X(java.lang.String, int) [15]\n" + 
		"    23  putstatic X.B : X [22]\n" + 
		"    26  new X [1]\n" + 
		"    29  dup\n" + 
		"    30  ldc <String \"C\"> [24]\n" + 
		"    32  iconst_2\n" + 
		"    33  invokespecial X(java.lang.String, int) [15]\n" + 
		"    36  putstatic X.C : X [25]\n" + 
		"    39  iconst_3\n" + 
		"    40  anewarray X [1]\n" + 
		"    43  dup\n" + 
		"    44  iconst_0\n" + 
		"    45  getstatic X.A : X [19]\n" + 
		"    48  aastore\n" + 
		"    49  dup\n" + 
		"    50  iconst_1\n" + 
		"    51  getstatic X.B : X [22]\n" + 
		"    54  aastore\n" + 
		"    55  dup\n" + 
		"    56  iconst_2\n" + 
		"    57  getstatic X.C : X [25]\n" + 
		"    60  aastore\n" + 
		"    61  putstatic X.ENUM$VALUES : X[] [27]\n" + 
		"    64  return\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 2]\n" + 
		"        [pc: 39, line: 1]\n" + 
		"  \n" + 
		"  // Method descriptor #18 (Ljava/lang/String;I)V\n" + 
		"  // Stack: 3, Locals: 3\n" + 
		"  private X(java.lang.String arg0, int arg1);\n" + 
		"    0  aload_0 [this]\n" + 
		"    1  aload_1\n" + 
		"    2  iload_2\n" + 
		"    3  invokespecial java.lang.Enum(java.lang.String, int) [31]\n" + 
		"    6  return\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"      Local variable table:\n" + 
		"        [pc: 0, pc: 7] local: this index: 0 type: X\n" + 
		"  \n" + 
		"  // Method descriptor #34 ()[LX;\n" + 
		"  // Stack: 5, Locals: 3\n" + 
		"  public static X[] values();\n" + 
		"     0  getstatic X.ENUM$VALUES : X[] [27]\n" + 
		"     3  dup\n" + 
		"     4  astore_0\n" + 
		"     5  iconst_0\n" + 
		"     6  aload_0\n" + 
		"     7  arraylength\n" + 
		"     8  dup\n" + 
		"     9  istore_1\n" + 
		"    10  anewarray X [1]\n" + 
		"    13  dup\n" + 
		"    14  astore_2\n" + 
		"    15  iconst_0\n" + 
		"    16  iload_1\n" + 
		"    17  invokestatic java.lang.System.arraycopy(java.lang.Object, int, java.lang.Object, int, int) : void [35]\n" + 
		"    20  aload_2\n" + 
		"    21  areturn\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"  \n" + 
		"  // Method descriptor #42 (Ljava/lang/String;)LX;\n" + 
		"  // Stack: 2, Locals: 1\n" + 
		"  public static X valueOf(java.lang.String arg0);\n" + 
		"     0  ldc <Class X> [1]\n" + 
		"     2  aload_0\n" + 
		"     3  invokestatic java.lang.Enum.valueOf(java.lang.Class, java.lang.String) : java.lang.Enum [43]\n" + 
		"     6  checkcast X [1]\n" + 
		"     9  areturn\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 1]\n" + 
		"}"; 
		
	int index = actualOutput.indexOf(expectedOutput);
	if (index == -1 || expectedOutput.length() == 0) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index == -1) {
		assertEquals("unexpected bytecode sequence", expectedOutput, actualOutput);
	}
}
	
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=141810
public void test130() {
	this.runConformTest(
			new String[] {
				"X.java",
				"public class X {\n" + 
				"   public static void main(String[] args) {\n" + 
				"      for(Action a : Action.values()) {\n" + 
				"         switch(a) {\n" + 
				"         case ONE:\n" + 
				"            System.out.print(\"1\");\n" + 
				"            break;\n" + 
				"         case TWO:\n" + 
				"            System.out.print(\"2\");\n" + 
				"            break;\n" + 
				"         default:\n" + 
				"            System.out.print(\"default\");\n" + 
				"         }\n" + 
				"      }\n" + 
				"   }\n" + 
				"}",
				"Action.java",
				"enum Action { ONE, TWO }"
			},
			"12"
		);
	
	this.runConformTest(
		new String[] {
			"Action.java",
			"enum Action {ONE, TWO, THREE}"
		},
		"",
		null,
		false,
		null
	);
	
	this.executeClass(
		"X.java",
		"12default",
		null,
		false,
		null,
		null,
		null);	
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=145732
public void test131() {
	this.runConformTest(
         new String[] {
        		 "X.java",
     			"public enum X {\n" + 
    			"	//A,B\n" + 
    			"	;\n" + 
    			"	public static void main(String[] args) {\n" + 
    			"		try {\n" + 
    			"			System.out.println(X.valueOf(null));\n" + 
    			"		} catch (NullPointerException e) {\n" + 
    			"			System.out.println(\"NullPointerException\");\n" + 
    			"		} catch (IllegalArgumentException e) {\n" + 
    			"			System.out.println(\"IllegalArgumentException\");\n" + 
    			"		}\n" + 
    			"	}\n" + 
    			"}\n",
         },
         "NullPointerException");
}	
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=145732 - variation
public void test132() {
	this.runConformTest(
         new String[] {
        		 "X.java",
     			"public enum X {\n" + 
    			"	A,B\n" + 
    			"	;\n" + 
    			"	public static void main(String[] args) {\n" + 
    			"		try {\n" + 
    			"			System.out.println(X.valueOf(null));\n" + 
    			"		} catch (NullPointerException e) {\n" + 
    			"			System.out.println(\"NullPointerException\");\n" + 
    			"		} catch (IllegalArgumentException e) {\n" + 
    			"			System.out.println(\"IllegalArgumentException\");\n" + 
    			"		}\n" + 
    			"	}\n" + 
    			"}\n",
         },
         "NullPointerException");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=147747
public void test133() {
	this.runConformTest(
         new String[] {
        		"X.java",
     			"public enum X {\n" + 
    			"	A, B, C;\n" +
    			"	public static void main(String[] args) {}\n" + 
    			"}\n",
         },
         "");
	ClassFileBytesDisassembler disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
	String actualOutput = null;
	try {
		byte[] classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator  +"X.class"));
		actualOutput =
			disassembler.disassemble(
				classFileBytes,
				"\n",
				ClassFileBytesDisassembler.DETAILED); 
	} catch (org.eclipse.jdt.core.util.ClassFormatException e) {
		assertTrue("ClassFormatException", false);
	} catch (IOException e) {
		assertTrue("IOException", false);
	}
	
	String expectedOutput = 
		"  // Method descriptor #12 ()V\n" + 
		"  // Stack: 4, Locals: 0\n" + 
		"  static {};\n" + 
		"     0  new X [1]\n" + 
		"     3  dup\n" + 
		"     4  ldc <String \"A\"> [14]\n" + 
		"     6  iconst_0\n" + 
		"     7  invokespecial X(java.lang.String, int) [15]\n" + 
		"    10  putstatic X.A : X [19]\n" + 
		"    13  new X [1]\n" + 
		"    16  dup\n" + 
		"    17  ldc <String \"B\"> [21]\n" + 
		"    19  iconst_1\n" + 
		"    20  invokespecial X(java.lang.String, int) [15]\n" + 
		"    23  putstatic X.B : X [22]\n" + 
		"    26  new X [1]\n" + 
		"    29  dup\n" + 
		"    30  ldc <String \"C\"> [24]\n" + 
		"    32  iconst_2\n" + 
		"    33  invokespecial X(java.lang.String, int) [15]\n" + 
		"    36  putstatic X.C : X [25]\n" + 
		"    39  iconst_3\n" + 
		"    40  anewarray X [1]\n" + 
		"    43  dup\n" + 
		"    44  iconst_0\n" + 
		"    45  getstatic X.A : X [19]\n" + 
		"    48  aastore\n" + 
		"    49  dup\n" + 
		"    50  iconst_1\n" + 
		"    51  getstatic X.B : X [22]\n" + 
		"    54  aastore\n" + 
		"    55  dup\n" + 
		"    56  iconst_2\n" + 
		"    57  getstatic X.C : X [25]\n" + 
		"    60  aastore\n" + 
		"    61  putstatic X.ENUM$VALUES : X[] [27]\n" + 
		"    64  return\n" + 
		"      Line numbers:\n" + 
		"        [pc: 0, line: 2]\n" + 
		"        [pc: 39, line: 1]\n"; 
		
	int index = actualOutput.indexOf(expectedOutput);
	if (index == -1 || expectedOutput.length() == 0) {
		System.out.println(Util.displayString(actualOutput, 3));
	}
	if (index == -1) {
		assertEquals("unexpected bytecode sequence", expectedOutput, actualOutput);
	}
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=149042
public void test134() {
    this.runNegativeTest(
        new String[] {
            "X.java",
			"public enum X {\n" + 
			"    INITIAL ,\n" + 
			"    OPENED {\n" + 
			"        {\n" + 
			"            System.out.printf(\"After the %s constructor\\n\",INITIAL);\n" + 
			"        }\n" + 
			"    }\n" + 
			"}",
        },
        "----------\n" + 
		"1. ERROR in X.java (at line 5)\n" + 
		"	System.out.printf(\"After the %s constructor\\n\",INITIAL);\n" + 
		"	                                               ^^^^^^^\n" + 
		"Cannot refer to the static enum field X.INITIAL within an initializer\n" + 
		"----------\n");
}
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=149562
// a default case is required to consider that b is initialized (in case E 
// takes new values in the future)
public void test135() {
    this.runNegativeTest(
        new String[] {
            "E.java",
			"public enum E {\n" + 
			"    A,\n" + 
			"    B\n" + 
			"}",
            "X.java",
			"public class X {\n" + 
			"    boolean foo(E e) {\n" +
			"        boolean b;\n" +
			"        switch (e) {\n" +
			"          case A:\n" +
			"              b = true;\n" +
			"              break;\n" + 
			"          case B:\n" +
			"              b = false;\n" +
			"              break;\n" +
			"        }\n" +
			"        return b;\n" +
			"    }\n" + 
			"}",
        },
		"----------\n" + 
		"1. ERROR in X.java (at line 12)\n" + 
		"	return b;\n" + 
		"	       ^\n" + 
		"The local variable b may not have been initialized\n" + 
		"----------\n");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=151368
public void test136() {
 this.runConformTest(
     new String[] {
        "X.java",
        "import p.BeanName;\n" +
		"public class X {\n" + 
		"	Object o = BeanName.CreateStepApiOperation;\n" +
		"}",
		"p/BeanName.java",
		"package p;\n" +
		"public enum BeanName {\n" + 
		"\n" + 
		"    //~ Enum constants ---------------------------------------------------------\n" + 
		"\n" + 
		"    AbortAllJobsOperation,\n" + 
		"    AbortJobApiOperation,\n" + 
		"    AbortStepOperation,\n" + 
		"    AclVoter,\n" + 
		"    AcquireNamedLockApiOperation,\n" + 
		"    AuthenticationManager,\n" + 
		"    BeginStepOperation,\n" + 
		"    CloneApiOperation,\n" + 
		"    CommanderDao,\n" + 
		"    CommanderServer,\n" + 
		"    ConfigureQuartzOperation,\n" + 
		"    CreateAclEntryApiOperation,\n" + 
		"    CreateActualParameterApiOperation,\n" + 
		"    CreateFormalParameterApiOperation,\n" + 
		"    CreateProcedureApiOperation,\n" + 
		"    CreateProjectApiOperation,\n" + 
		"    CreateResourceApiOperation,\n" + 
		"    CreateScheduleApiOperation,\n" + 
		"    CreateStepApiOperation,\n" + 
		"    DeleteAclEntryApiOperation,\n" + 
		"    DeleteActualParameterApiOperation,\n" + 
		"    DeleteFormalParameterApiOperation,\n" + 
		"    DeleteJobApiOperation,\n" + 
		"    DeleteProcedureApiOperation,\n" + 
		"    DeleteProjectApiOperation,\n" + 
		"    DeletePropertyApiOperation,\n" + 
		"    DeleteResourceApiOperation,\n" + 
		"    DeleteScheduleApiOperation,\n" + 
		"    DeleteStepApiOperation,\n" + 
		"    DispatchApiRequestOperation,\n" + 
		"    DumpStatisticsApiOperation,\n" + 
		"    ExpandJobStepAction,\n" + 
		"    ExportApiOperation,\n" + 
		"    FinishStepOperation,\n" + 
		"    GetAccessApiOperation,\n" + 
		"    GetAclEntryApiOperation,\n" + 
		"    GetActualParameterApiOperation,\n" + 
		"    GetActualParametersApiOperation,\n" + 
		"    GetFormalParameterApiOperation,\n" + 
		"    GetFormalParametersApiOperation,\n" + 
		"    GetJobDetailsApiOperation,\n" + 
		"    GetJobInfoApiOperation,\n" + 
		"    GetJobStatusApiOperation,\n" + 
		"    GetJobStepDetailsApiOperation,\n" + 
		"    GetJobStepStatusApiOperation,\n" + 
		"    GetJobsApiOperation,\n" + 
		"    GetProcedureApiOperation,\n" + 
		"    GetProceduresApiOperation,\n" + 
		"    GetProjectApiOperation,\n" + 
		"    GetProjectsApiOperation,\n" + 
		"    GetPropertiesApiOperation,\n" + 
		"    GetPropertyApiOperation,\n" + 
		"    GetResourceApiOperation,\n" + 
		"    GetResourcesApiOperation,\n" + 
		"    GetResourcesInPoolApiOperation,\n" + 
		"    GetScheduleApiOperation,\n" + 
		"    GetSchedulesApiOperation,\n" + 
		"    GetStepApiOperation,\n" + 
		"    GetStepsApiOperation,\n" + 
		"    GetVersionsApiOperation,\n" + 
		"    GraphWorkflowApiOperation,\n" + 
		"    HibernateFlushListener,\n" + 
		"    ImportApiOperation,\n" + 
		"    IncrementPropertyApiOperation,\n" + 
		"    InvokeCommandOperation,\n" + 
		"    InvokePostProcessorOperation,\n" + 
		"    LoginApiOperation,\n" + 
		"    LogManager,\n" + 
		"    LogMessageApiOperation,\n" + 
		"    ModifyAclEntryApiOperation,\n" + 
		"    ModifyActualParameterApiOperation,\n" + 
		"    ModifyFormalParameterApiOperation,\n" + 
		"    ModifyProcedureApiOperation,\n" + 
		"    ModifyProjectApiOperation,\n" + 
		"    ModifyPropertyApiOperation,\n" + 
		"    ModifyResourceApiOperation,\n" + 
		"    ModifyScheduleApiOperation,\n" + 
		"    ModifyStepApiOperation,\n" + 
		"    MoveStepApiOperation,\n" + 
		"    PauseSchedulerApiOperation,\n" + 
		"    QuartzQueue,\n" + 
		"    QuartzScheduler,\n" + 
		"    ReleaseNamedLockApiOperation,\n" + 
		"    ResourceInvoker,\n" + 
		"    RunProcedureApiOperation,\n" + 
		"    RunQueryApiOperation,\n" + 
		"    SaxReader,\n" + 
		"    ScheduleStepsOperation,\n" + 
		"    SessionCache,\n" + 
		"    SetJobNameApiOperation,\n" + 
		"    SetPropertyApiOperation,\n" + 
		"    SetStepStatusAction,\n" + 
		"    StartWorkflowOperation,\n" + 
		"    StateRefreshOperation,\n" + 
		"    StepCompletionPrecondition,\n" + 
		"    StepOutcomePrecondition,\n" + 
		"    StepScheduler,\n" + 
		"    TemplateOperation,\n" + 
		"    TimeoutWatchdog,\n" + 
		"    UpdateConfigurationOperation,\n" + 
		"    Workspace,\n" + 
		"    XmlRequestHandler;\n" + 
		"\n" + 
		"    //~ Static fields/initializers ---------------------------------------------\n" + 
		"\n" + 
		"    public static final int MAX_BEAN_NAME_LENGTH = 33;\n" + 
		"\n" + 
		"    //~ Methods ----------------------------------------------------------------\n" + 
		"\n" + 
		"    /**\n" + 
		"     * Get this bean name as a property name, i.e. uncapitalized.\n" + 
		"     *\n" + 
		"     * @return String\n" + 
		"     */\n" + 
		"    public String getPropertyName()\n" + 
		"    {\n" + 
		"        return null;\n" + 
		"    }\n" + 
		"}\n", // =================,
     },
	"");
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=156540
public void test137() {
 this.runConformTest(
     new String[] {
        "X.java",
        "public class X {\n" + 
        "\n" + 
        "    interface Interface {\n" + 
        "        public int value();\n" + 
        "    }\n" + 
        "\n" + 
        "    public enum MyEnum implements Interface {\n" + 
        "        ;\n" + 
        "\n" + 
        "        MyEnum(int value) { this.value = value; }        \n" + 
        "        public int value() { return this.value; }\n" + 
        "\n" + 
        "        private int value;\n" + 
        "    }\n" + 
        "\n" + 
        "    public static void main(String[] args) {\n" + 
        "        System.out.println(MyEnum.values().length);\n" + 
        "    }\n" + 
        "}", // =================,
     },
	"0");
}
}

Back to the top