Line marker tests for header <----> impl
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
header class <lineMarker>Header</lineMarker> {
|
||||
fun foo(): Int
|
||||
}
|
||||
|
||||
header fun <lineMarker>foo</lineMarker>(arg: Int): String
|
||||
|
||||
header val <lineMarker>flag</lineMarker>: Boolean
|
||||
@@ -0,0 +1,11 @@
|
||||
// !CHECK_HIGHLIGHTING
|
||||
|
||||
impl class Header {
|
||||
impl fun foo() = 42
|
||||
}
|
||||
|
||||
impl fun foo(arg: Int) = arg.toString()
|
||||
|
||||
impl val flag = true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user