Skip to content

Fix #5148: Rename class Aux to Aux_ #5179

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

Merged
merged 1 commit into from
Sep 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/run/i4947c.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
object Aux {
object Foo {

inline def track[T](f: => T): T = {
printStack("track")
Expand All @@ -12,7 +12,7 @@ object Aux {
}

object Test {
import Aux._
import Foo._
def main(args: Array[String]): Unit = {
track {
printStack("main1")
Expand Down