summaryrefslogblamecommitdiff
path: root/test/pos/modules.scala
blob: 8168a42d3c856bca8542854c8a346dac37ffa790 (plain) (tree)
1
2
3
4
5

               
            
 
              








                               
package scala {

  object a {

    object b {

      trait c {}
      def foo(x: c): c = bar(x)

    }

    def bar(x: b.c): b.c = x
  }
}