[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
package test
|
||||
|
||||
fun use() {
|
||||
Default.create()
|
||||
|
||||
Explicit.create()
|
||||
}
|
||||
|
||||
private class Default {
|
||||
companion object {
|
||||
fun create() = Default()
|
||||
}
|
||||
}
|
||||
|
||||
private class Explicit {
|
||||
private companion object {
|
||||
fun create() = Explicit()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user