Files
kotlin/idea/testData/editor/quickDoc/ConstructorVarParameter.kt
Simon Ogorodnik e4a383f3e2 Fix for KT-10665, now only signature + deprecation info shown in quick navigation tooltip
Fix tests, to use full documentation mode instead of quick navigate
2016-11-29 14:08:10 +03:00

8 lines
155 B
Kotlin
Vendored

class C(var v: Int) {
fun foo() {
print(<caret>v)
}
}
//INFO: <pre><b>public</b> <b>final</b> <b>var</b> v: Int <i>defined in</i> C</pre>