(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / jtests / switch.js
blob88c2c5068a7138fe0e5035fe677a653ee6b8fc58
1 var x = "b";
3 switch (x) {
4 case "hola":
5     print ("matched hola");
6     print ("Oh i rock");
7 case "a":
8     print ("matched a");
9 case "b":
10     print ("matched b");
11 case 1:
12     print ("matched 1");
13 default:
14     print ("blah this is default");
15     print ("this is default too ;-)");
16 case "afterDefault":
17     print ("matched after default");