diff options
author | Andy Clement <andrew.clement@gmail.com> | 2012-04-05 15:17:56 -0700 |
---|---|---|
committer | Andy Clement <andrew.clement@gmail.com> | 2012-04-05 15:17:56 -0700 |
commit | 62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b (patch) | |
tree | e74acdf6e9a788963987bb61f6c92189765ddba1 /tests/bugs170 | |
parent | f340cea270dbc56dde9a938bd9c88c89f88e4db5 (diff) | |
download | aspectj-62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b.tar.gz aspectj-62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b.zip |
pr376139
Diffstat (limited to 'tests/bugs170')
-rw-r--r-- | tests/bugs170/pr376139/Code.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs170/pr376139/Code.java b/tests/bugs170/pr376139/Code.java new file mode 100644 index 000000000..b3c97378e --- /dev/null +++ b/tests/bugs170/pr376139/Code.java @@ -0,0 +1,10 @@ +enum Color { R,G,B; } + +public class Code { + + public static void main(String[] argv) { + Color c = Color.R; + switch (c) { + } + } +} |