summaryrefslogtreecommitdiff
path: root/test/files/run/reflection-fancy-java-classes/Foo_1.java
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-10-23 00:54:12 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-10-23 00:54:12 -0700
commit6062a9c599ae1b7ecc89ae5296cf04d4627907af (patch)
treec009f92bbd647da0065855890bea6253c6394ada /test/files/run/reflection-fancy-java-classes/Foo_1.java
parent0c2d73755b3db80d976231b44b66107db5412426 (diff)
parent5a672866379f90a5c3a9c29a86f9a7b661a3c2c6 (diff)
downloadscala-6062a9c599ae1b7ecc89ae5296cf04d4627907af.tar.gz
scala-6062a9c599ae1b7ecc89ae5296cf04d4627907af.tar.bz2
scala-6062a9c599ae1b7ecc89ae5296cf04d4627907af.zip
Merge pull request #3057 from xeno-by/topic/fancy-java-classes
fixes handling of fancy nested classes in runtime reflection
Diffstat (limited to 'test/files/run/reflection-fancy-java-classes/Foo_1.java')
-rw-r--r--test/files/run/reflection-fancy-java-classes/Foo_1.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/reflection-fancy-java-classes/Foo_1.java b/test/files/run/reflection-fancy-java-classes/Foo_1.java
new file mode 100644
index 0000000000..f6fd76124b
--- /dev/null
+++ b/test/files/run/reflection-fancy-java-classes/Foo_1.java
@@ -0,0 +1,5 @@
+public class Foo_1 {
+ public static Bar bar = new Bar();
+ private static class Bar {
+ }
+} \ No newline at end of file