forked from dotty-staging/dotty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix printing package objects and nested packages
- Loading branch information
1 parent
6fb7970
commit 6bb6b91
Showing
2 changed files
with
51 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** Decompiled from out/posTestFromTasty/pos/t6225/ko.class */ | ||
object ko { | ||
import library.y.{Foo, foo} | ||
dotty.DottyPredef.implicitly[library.y.Foo](library.y.foo) | ||
} | ||
/** Decompiled from out/posTestFromTasty/pos/t6225/ko2.class */ | ||
object ko2 { | ||
import library.y.{_} | ||
dotty.DottyPredef.implicitly[library.y.Foo](library.y.foo) | ||
} | ||
/** Decompiled from out/posTestFromTasty/pos/t6225/library/x/X.class */ | ||
package library.x { | ||
class X() { | ||
class Foo() | ||
implicit val foo: X.this.Foo = new X.this.Foo() | ||
} | ||
} | ||
/** Decompiled from out/posTestFromTasty/pos/t6225/library/y/package.class */ | ||
package library { | ||
package object y extends library.x.X() | ||
} |