From b0ef98f5e324c85a7bac7e196d3a931d19432910 Mon Sep 17 00:00:00 2001 From: Eugene Melekhov Date: Fri, 28 Sep 2018 14:34:56 +0300 Subject: [PATCH] Fix #5148: Rename class Aux to Foo --- tests/run/i4947c.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/i4947c.scala b/tests/run/i4947c.scala index 191358225bd4..12188de7004d 100644 --- a/tests/run/i4947c.scala +++ b/tests/run/i4947c.scala @@ -1,4 +1,4 @@ -object Aux { +object Foo { inline def track[T](f: => T): T = { printStack("track") @@ -12,7 +12,7 @@ object Aux { } object Test { - import Aux._ + import Foo._ def main(args: Array[String]): Unit = { track { printStack("main1")