Add line marker test for primary constructors #KT-20254 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-10-09 13:45:35 +03:00
parent 0ebe9d576a
commit eec8be2c21
9 changed files with 56 additions and 0 deletions
@@ -0,0 +1,4 @@
expect annotation class <lineMarker>Ann</lineMarker> <lineMarker>constructor</lineMarker>(
val <lineMarker>x</lineMarker>: Int,
val <lineMarker>y</lineMarker>: String
)
@@ -0,0 +1,6 @@
// !CHECK_HIGHLIGHTING
actual annotation class Ann actual constructor(
actual val x: Int,
actual val y: String
)