aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/t742.scala
blob: cc0d7063c7ab1ac0982ff2e1565a66da878fee80 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                    
object Crash {
    type mul[m[n[s[_], z], z], n[s[_], z], z] = m[n, z]
    type _1[s1[_], z1] = s1[z1]
    type _2[s1[_], z1] = s1[z1]
    type p = mul[_1, _2, Any]  // mul[_1, _1, Any] needs -Yrecursion
    // _1[_2, Zero]
    // _2[Zero]
}