Fixed broken testdata.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
class Some {
|
||||
fun some() {
|
||||
var int : Int = 0
|
||||
var int: Int = 0
|
||||
|
||||
int = 12
|
||||
int += 12
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
class Some() {
|
||||
val a : Int
|
||||
val a: Int
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
fun test(a : Int,
|
||||
b : Int) {
|
||||
fun test(a: Int,
|
||||
b: Int) {
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
var test : Int
|
||||
var test: Int
|
||||
get () {
|
||||
return 0
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Some {
|
||||
fun some() {
|
||||
var int : Int=0
|
||||
var int: Int=0
|
||||
|
||||
int=12
|
||||
int+=12
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
fun someLong(a : Int
|
||||
fun someLong(a: Int
|
||||
) {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
fun someLong(a : Int
|
||||
fun someLong(a: Int
|
||||
) {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
fun some(x : Any) {
|
||||
fun some(x: Any) {
|
||||
when (x) {
|
||||
is Int ->
|
||||
0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
fun some(x : Any) {
|
||||
fun some(x: Any) {
|
||||
when (x) {
|
||||
is Int -> 0
|
||||
else -> 1
|
||||
|
||||
Reference in New Issue
Block a user