summaryrefslogtreecommitdiff
path: root/test/files/run/t5652b/t5652b_1.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2012-06-08 09:01:57 -0700
committerAdriaan Moors <adriaan.moors@epfl.ch>2012-06-08 09:01:57 -0700
commit59f0214e5d8603572f50514666ec24e274747369 (patch)
treed6af74733fea5fbe79182f0e534cda2fe6a3bcd9 /test/files/run/t5652b/t5652b_1.scala
parent8d0ba32a3fe2a7331e692868b469b95292b4eabc (diff)
parent4794374af4d7c84ed6e06ac9c4e4f9f9d09cb102 (diff)
downloadscala-59f0214e5d8603572f50514666ec24e274747369.tar.gz
scala-59f0214e5d8603572f50514666ec24e274747369.tar.bz2
scala-59f0214e5d8603572f50514666ec24e274747369.zip
Merge pull request #631 from retronym/ticket/5652-3
SI-5652 Mangle names of potentially public lambda lifted methods.
Diffstat (limited to 'test/files/run/t5652b/t5652b_1.scala')
-rw-r--r--test/files/run/t5652b/t5652b_1.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t5652b/t5652b_1.scala b/test/files/run/t5652b/t5652b_1.scala
new file mode 100644
index 0000000000..72ba5dcd82
--- /dev/null
+++ b/test/files/run/t5652b/t5652b_1.scala
@@ -0,0 +1,3 @@
+class A1 {
+ def f1 = { def g = 5 ; class A { def a = 0 } ; new A; g }
+}