aboutsummaryrefslogtreecommitdiff
path: root/tests/pickling/i1202a.scala
blob: 0bc19f4e3c5cc7b23275efeccefa1e335407cfc1 (plain) (blame)
1
2
3
4
5
6
7
class Test[T] {
  def testMethod: Unit =
    new Foo(this)
}
class Foo[T]() {
  def this(ct: Test[T]) = this()
}