We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e18b20 commit bd5669bCopy full SHA for bd5669b
4 files changed
tests/unused_example_data/kotlin/function_used_twice.kt
@@ -0,0 +1,14 @@
1
+fun fun0() {
2
+ print('{')
3
+ print('%')
4
+}
5
+
6
+fun fun1() {
7
+ fun0()
8
+ println()
9
10
11
12
+fun main() {
13
+ fun1()
14
tests/unused_example_data/kotlin/one_empty_function.kt
@@ -0,0 +1,10 @@
+fun fun0() {}
+ print('C')
tests/unused_example_data/kotlin/single_atom.kt
@@ -0,0 +1,3 @@
+ print('X')
tests/unused_example_data/kotlin/trivial.kt
@@ -0,0 +1 @@
+fun main() {}
0 commit comments