Fixed testdata -- removed package import
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
package testing.rename2
|
||||
|
||||
import testing.rename.Third
|
||||
import testing.rename
|
||||
import java.util.ArrayList
|
||||
|
||||
// Extends testing.rename.Third
|
||||
public class Second : Third() {
|
||||
val temp : testing.rename.Third = Third()
|
||||
|
||||
fun tempName(param : Third) : rename.Third {
|
||||
fun tempName(param : Third) : testing.rename.Third {
|
||||
val local = Third()
|
||||
val otherLocal = param
|
||||
val arr = ArrayList<Third>()
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
package testing.rename2
|
||||
|
||||
import testing.rename.First
|
||||
import testing.rename
|
||||
import java.util.ArrayList
|
||||
|
||||
// Extends testing.rename.First
|
||||
public class Second : First() {
|
||||
val temp : testing.rename.First = First()
|
||||
|
||||
fun tempName(param : First) : rename.First {
|
||||
fun tempName(param : First) : testing.rename.First {
|
||||
val local = First()
|
||||
val otherLocal = param
|
||||
val arr = ArrayList<First>()
|
||||
|
||||
Reference in New Issue
Block a user