Introduce inspection for unused main parameter #KT-26999 Fixed
This commit is contained in:
@@ -0,0 +1 @@
|
||||
org.jetbrains.kotlin.idea.inspections.UnusedMainParameterInspection
|
||||
@@ -0,0 +1,6 @@
|
||||
// PROBLEM: none
|
||||
// LANGUAGE_VERSION: 1.4
|
||||
|
||||
fun main(<caret>args: Array<String>) {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// PROBLEM: none
|
||||
// LANGUAGE_VERSION: 1.2
|
||||
|
||||
fun main(<caret>args: Array<String>) {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// LANGUAGE_VERSION: 1.3
|
||||
|
||||
fun main(<caret>args: Array<String>) {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// LANGUAGE_VERSION: 1.3
|
||||
|
||||
fun main() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user