missing paren

This commit is contained in:
Justin Donaldson 2013-08-21 20:37:32 -07:00
parent 98278338e7
commit 27b3ab01e4

View File

@ -557,7 +557,7 @@ class ComplexEnumTest{
var e3 = ComplexEnumEnum(ComplexEnumEnum(MultiEnum(4, 'hi', 4.3))); // enums all the way down var e3 = ComplexEnumEnum(ComplexEnumEnum(MultiEnum(4, 'hi', 4.3))); // enums all the way down
switch(e3){ switch(e3){
// You can look for certain nested enums by specifying them explicitly: // You can look for certain nested enums by specifying them explicitly:
case ComplexEnumEnum(ComplexEnumEnum(MultiEnum(i,j,k)) : { case ComplexEnumEnum(ComplexEnumEnum(MultiEnum(i,j,k))) : {
trace('$i, $j, and $k were passed into this nested monster'); trace('$i, $j, and $k were passed into this nested monster');
} }
default: trace("Shouldn't be printed"); default: trace("Shouldn't be printed");