-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mark genSJSIR as *disabled* (rather than non-*runnable*) when no `-sc…
…alajs`. This works around the issue seen in #20296. However, the issue resurfaces if we actually run `-Ycheck:all` in a Scala.js-enabled build. [Cherry-picked a88312b][modified]
- Loading branch information
1 parent
a665d04
commit 96793ee
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
trait Foo | ||
|
||
object Foo { | ||
inline def bar(): Foo = | ||
class InlinedFoo extends Foo {} | ||
new InlinedFoo | ||
|
||
inline def foo(): Foo = | ||
bar() | ||
class InlinedFoo extends Foo {} | ||
new InlinedFoo | ||
|
||
def Test: Foo = Foo.foo() | ||
} |