We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0c1d5a + aa10a37 commit 5f28215Copy full SHA for 5f28215
tests/run/i4523.check
@@ -0,0 +1,4 @@
1
+private static final int C.foo$$anonfun$1(int)
2
+private static final void C.notfive$1(int)
3
+private static java.lang.Object C.$deserializeLambda$(java.lang.invoke.SerializedLambda)
4
+public scala.collection.Seq C.foo()
tests/run/i4523.scala
@@ -0,0 +1,16 @@
+class C {
+ inline def one = 1
+ def foo = {
+ def notfive(i: Int) = println(i)
5
+ inline def five = one + 4
6
+ Seq(5).map { i =>
7
+ i + five
8
+ }
9
10
+}
11
+
12
+object Test {
13
+ def main(args: Array[String]): Unit = {
14
+ classOf[C].getDeclaredMethods.map(_.toString).sorted.foreach(println)
15
16
0 commit comments