Skip to content

Commit cdca645

Browse files
committed
Test case
1 parent f548a18 commit cdca645

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

tests/new/i5492.scala

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package foo {
2+
object A {
3+
inline def f(x: Int) = B.f(x)
4+
}
5+
6+
private[foo] object B {
7+
def f(x: Int) = x * 5
8+
}
9+
}
10+
11+
class Test {
12+
val x = foo.A.f(4)
13+
}

tests/new/test.scala

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)