aboutsummaryrefslogtreecommitdiff
path: root/tests/run
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-03-28 17:36:56 +0200
committerGitHub <noreply@github.com>2017-03-28 17:36:56 +0200
commit30bfbd571419569db08bfc5ccc7edb788679b696 (patch)
tree3874e842d6982f240404f99a181b92a2d81b2f0d /tests/run
parent1fe730493f9c8701d781cb3ba89bf4ce400d0e72 (diff)
parent6135363f8730421202eeb39494d3720b9124131c (diff)
downloaddotty-30bfbd571419569db08bfc5ccc7edb788679b696.tar.gz
dotty-30bfbd571419569db08bfc5ccc7edb788679b696.tar.bz2
dotty-30bfbd571419569db08bfc5ccc7edb788679b696.zip
Merge pull request #2127 from dotty-staging/fix/variable-pattern-access
Fix desugaring of variable pattern leaking into API
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/variable-pattern-access.check7
-rw-r--r--tests/run/variable-pattern-access.scala16
2 files changed, 23 insertions, 0 deletions
diff --git a/tests/run/variable-pattern-access.check b/tests/run/variable-pattern-access.check
new file mode 100644
index 000000000..1039f6a25
--- /dev/null
+++ b/tests/run/variable-pattern-access.check
@@ -0,0 +1,7 @@
+# Fields of A:
+private final int A.a$$local
+private final int A.b$$local
+private final scala.Tuple2 A.$1$
+# Methods of A:
+public int A.a()
+public int A.b()
diff --git a/tests/run/variable-pattern-access.scala b/tests/run/variable-pattern-access.scala
new file mode 100644
index 000000000..1d27b3e42
--- /dev/null
+++ b/tests/run/variable-pattern-access.scala
@@ -0,0 +1,16 @@
+class A {
+ val (a, b) = (1, 2)
+}
+object Test {
+ def printFields(cls: Class[_]) =
+ println(cls.getDeclaredFields.map(_.toString).sorted.deep.mkString("\n"))
+ def printMethods(cls: Class[_]) =
+ println(cls.getDeclaredMethods.map(_.toString).sorted.deep.mkString("\n"))
+
+ def main(args: Array[String]): Unit = {
+ println("# Fields of A:")
+ printFields(classOf[A])
+ println("# Methods of A:")
+ printMethods(classOf[A])
+ }
+}