[FE Test] Rename nested directory in testdata into nestedClasses

This is needed to avoid clash between generated test class `Nested` and
  `@Nested` annotation from JUnit 5
This commit is contained in:
Dmitriy Novozhilov
2023-04-17 12:11:36 +03:00
committed by Space Team
parent 0ca86c86be
commit de33a21fd1
12 changed files with 42 additions and 42 deletions
@@ -0,0 +1,13 @@
package test
class A<TA> {
inner class B<TB> {
inner class C<TC> {
inner class D<TD> {
fun <P1, P2, P3, P4> foo(p1: P1, p2: P2, p3: P3, p4: P4): Nothing = null!!
fun bar(ta: TA, tb: TB, tc: TC, td: TD): A<TA>.B<TB>.C<TC>.D<TD> = foo<TA, TB, TC, TD>(ta, tb, tc, td)
}
}
}
}