Wrap diagnostic parameters to double quotes and split by comma instead of semicolon
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
class Outer {
|
||||
inner class Inner {
|
||||
annotation <!NESTED_CLASS_NOT_ALLOWED(Annotation class)!>class TestNestedAnnotation<!>
|
||||
annotation <!NESTED_CLASS_NOT_ALLOWED("Annotation class")!>class TestNestedAnnotation<!>
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
class Outer {
|
||||
inner class Inner {
|
||||
<!NESTED_CLASS_NOT_ALLOWED(Enum class)!>enum class TestNestedEnum<!>
|
||||
<!NESTED_CLASS_NOT_ALLOWED("Enum class")!>enum class TestNestedEnum<!>
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
class Outer {
|
||||
inner class Inner {
|
||||
<!NESTED_CLASS_NOT_ALLOWED(Interface)!>interface TestNestedInterface<!>
|
||||
<!NESTED_CLASS_NOT_ALLOWED("Interface")!>interface TestNestedInterface<!>
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
// SKIP_TXT
|
||||
class Outer {
|
||||
inner class Inner1 {
|
||||
<!NESTED_CLASS_NOT_ALLOWED(Object)!>object Obj1<!>
|
||||
<!NESTED_CLASS_NOT_ALLOWED("Object")!>object Obj1<!>
|
||||
|
||||
companion <!NESTED_CLASS_NOT_ALLOWED(Companion object)!>object Obj2<!>
|
||||
companion <!NESTED_CLASS_NOT_ALLOWED("Companion object")!>object Obj2<!>
|
||||
|
||||
inner class Inner2 {
|
||||
<!NESTED_CLASS_NOT_ALLOWED(Object)!>object Obj3<!>
|
||||
<!NESTED_CLASS_NOT_ALLOWED("Object")!>object Obj3<!>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user