aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2012-04-05 15:17:56 -0700
committerAndy Clement <andrew.clement@gmail.com>2012-04-05 15:17:56 -0700
commit62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b (patch)
treee74acdf6e9a788963987bb61f6c92189765ddba1 /tests/bugs170
parentf340cea270dbc56dde9a938bd9c88c89f88e4db5 (diff)
downloadaspectj-62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b.tar.gz
aspectj-62fca9a2dd7c7a0f9eef9b2186f82fd8e695162b.zip
pr376139
Diffstat (limited to 'tests/bugs170')
-rw-r--r--tests/bugs170/pr376139/Code.java10
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) {
+ }
+ }
+}