summaryrefslogtreecommitdiff
path: root/test/files/run/t1167.scala
blob: 3dd0a30c00caa7be842ba870d729c3a111a7e7a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** Tests for compatible InnerClasses attribute between trait and
 *  impl classes, as well as anonymous classes.
 */

trait Test1 {
  def testFunc(i:Int): Unit = {
    (i:Int) => i + 5
  }
}

/* getName
 *   Returns the binary name of the class if this class object represents a
 *   reference type that is not an array type.
 * getSimpleName
 *   Returns the simple name of the underlying class as given in the source
 *   code. Returns an empty string if the underlying class is anonymous.
 */
abstract class Foo {
  override def toString = getClass.getSimpleName

  abstract class Bar {
    override def toString = getClass.getSimpleName
  }
}

object Test extends App {
  val foo = new Foo {}
  val bar = new foo.Bar {}
  println(foo)
  println(bar)
  println(Class.forName("Test1$$anonfun$testFunc$1").getSimpleName)
}