-
Notifications
You must be signed in to change notification settings - Fork 335
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
assertDoesNotCompile not works when creating mixins #2283
Comments
@goshacodes The |
Forgot to mention, this thing worked with scala 2 macro |
As far as I know,
For the following code: // Error.scala
class AsyncSyncMixinTest {
trait A { this: C => }
trait B { this: D => }
trait C
trait D
new A with D
new B with C
} But maybe it should run the phase |
@goshacodes @liufengyun I think it is probably related to this ticket reported in Dotty earlier: I have added a comment in the ticket to link here. |
scala version: 3.3.0
scalatest version: 3.2.16
ER: tests yield success
AR: tests fail
The text was updated successfully, but these errors were encountered: