Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28afa19 commit f04eb6bCopy full SHA for f04eb6b
2 files changed
java/ql/test/kotlin/library-tests/types/types.expected
@@ -1,3 +1,4 @@
1
+| file://:0:0:0:0 | <nulltype> | NullType |
2
| file://:0:0:0:0 | Any | Class |
3
| file://:0:0:0:0 | boolean | PrimitiveType |
4
| file://:0:0:0:0 | byte | PrimitiveType |
@@ -8,4 +9,4 @@
8
9
| file://:0:0:0:0 | long | PrimitiveType |
10
| file://:0:0:0:0 | short | PrimitiveType |
11
| file://:0:0:0:0 | string | ??? |
-| types.kt:2:1:33:1 | Foo | Class |
12
+| types.kt:2:1:37:1 | Foo | Class |
java/ql/test/kotlin/library-tests/types/types.kt
@@ -21,6 +21,10 @@ TODO
21
val propChar: Char = 'c'
22
val propString: String = "str"
23
24
+ val propNullableString: String? = "str"
25
+
26
+ val propNullableNothing: Nothing? = null
27
28
/*
29
TODO
30
val propArray: Array<Int> = arrayOf(1, 2, 3)
0 commit comments