[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
public open class NotNullField : R|kotlin/Any| {
|
||||
public final var hi: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
public set(value: R|kotlin/String|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/NotNullField|
|
||||
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
public open class NotNullIntArray : R|kotlin/Any| {
|
||||
public open fun hi(): R|kotlin/IntArray|
|
||||
|
||||
public constructor(): R|test/NotNullIntArray|
|
||||
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
public open class NotNullMethod : R|kotlin/Any| {
|
||||
public open fun hi(): R|kotlin/String|
|
||||
|
||||
public constructor(): R|test/NotNullMethod|
|
||||
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
public open class NotNullObjectArray : R|kotlin/Any| {
|
||||
public open fun hi(): R|kotlin/Array<kotlin/Any>|
|
||||
|
||||
public constructor(): R|test/NotNullObjectArray|
|
||||
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
public open class NotNullParameter : R|kotlin/Any| {
|
||||
public open fun hi(p0: R|kotlin/String|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/NotNullParameter|
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user