summaryrefslogblamecommitdiff
path: root/test/files/pos/t5877.scala
blob: c7827df99f284d9ec4126a8ed3676f0985846d19 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                      
package foo {
  class Foo

  object Test {
    new Foo().huzzah
  }
}

package object foo {
  // Crasher: No synthetics for method PimpedFoo2: synthetics contains
  implicit class PimpedFoo2(value: Foo) {
    def huzzah = ""
  }
}