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

Restore test fixed by recent Java-sealed PR #10386

Merged
merged 1 commit into from
May 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions test/files/neg/t12159.check
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
s.scala:11: error: not found: type ZZ
class Z extends ZZ // fail compile: remove when source flags are restored
s.scala:5: error: illegal inheritance from sealed class H
class S extends H {
^
1 error
s.scala:8: error: illegal inheritance from sealed trait I
trait T extends I {
^
2 errors
2 changes: 0 additions & 2 deletions test/files/neg/t12159/s.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ class S extends H {

trait T extends I {
}

class Z extends ZZ // fail compile: remove when source flags are restored