[IDEA-TESTS] Specify language version in feature-dependent tests
Some quickfixes are relying on diagnostics, that won't be reported with new language features enabled. `MixedNamedArgumentsInTheirOwnPosition` `AllowBreakAndContinueInsideWhen`
This commit is contained in:
-1
@@ -1,5 +1,4 @@
|
||||
// "Create property 'foo' as constructor parameter" "true"
|
||||
// ERROR: The feature "trailing commas" is only available since language version 1.4
|
||||
// ERROR: No value passed for parameter 'foo'
|
||||
|
||||
class A<T>(val n: T)
|
||||
|
||||
Vendored
-1
@@ -1,5 +1,4 @@
|
||||
// "Create property 'foo' as constructor parameter" "true"
|
||||
// ERROR: The feature "trailing commas" is only available since language version 1.4
|
||||
// ERROR: No value passed for parameter 'foo'
|
||||
|
||||
class A<T>(val n: T, val foo: A<Int>)
|
||||
|
||||
-1
@@ -1,5 +1,4 @@
|
||||
// "Create property 'foo' as constructor parameter" "true"
|
||||
// ERROR: The feature "trailing commas" is only available since language version 1.4
|
||||
// ERROR: No value passed for parameter 'foo'
|
||||
|
||||
class A<T>(val n: T)
|
||||
|
||||
Vendored
-1
@@ -1,5 +1,4 @@
|
||||
// "Create property 'foo' as constructor parameter" "true"
|
||||
// ERROR: The feature "trailing commas" is only available since language version 1.4
|
||||
// ERROR: No value passed for parameter 'foo'
|
||||
|
||||
class A<T>(val n: T, var foo: String)
|
||||
|
||||
Reference in New Issue
Block a user