Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assertion failure when check the subtype relation #11221

Open
Ang9876 opened this issue Jan 26, 2021 · 0 comments
Open

Assertion failure when check the subtype relation #11221

Ang9876 opened this issue Jan 26, 2021 · 0 comments

Comments

@Ang9876
Copy link
Contributor

Ang9876 commented Jan 26, 2021

Compiler version

Scala compiler version 3.0.0-M3

Minimized code

This code is inspired by tests/pos/i5735.scala.

type Nested[X, P[_, _], N] = X match {
    case N => N
    case P[a, b] => P[a, Nested[b, P, N]]
  }

def foo[T, Y >: T <: Nested[T, Tuple2, Unit]](t: T): T = t 

Output

It can be compiled without -Yno-deep-subtypes. But with -Yno-deep-subtypes, the result is

assertion failure for Any <:< Unit, frozen = true
assertion failure for T <:< Unit, frozen = true
assertion failure for Nested[T, [T1, T2] =>> (T1, T2), Unit] <:< Unit, frozen = true
assertion failure for T <:< Unit, frozen = true
assertion failure for Nested[T, [T1, T2] =>> (T1, T2), Unit] <:< Unit, frozen = true
...
...

Expectation

It seems that the assertion failure occurs when the compiler checks Y <: Nested[T, Tuple2, Unit].

michelou pushed a commit to michelou/scala3 that referenced this issue Feb 5, 2021
- Register class type parameters from outer contexts in typedDefdef.
- Remove a condition to support gadt approximation for class type parameters.
- Add test cases in tests/pos/class-gadt.
- Ignore test cases tests/pos/i4345.scala and i5735.scala (issue scala#11220 and scala#11221)
@abgruszecki abgruszecki self-assigned this Mar 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants