Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
unnecessaryLateinit
/
secondaryConstructorDelegateItself.kt
blob: a98a1e8bb2881bde7818d0e176df2df6738626a5 [
file
] [
log
] [
blame
]
// "Remove 'lateinit' modifier" "true"
// ERROR: There's a cycle in the delegation calls chain
class
Foo
{
<caret>
lateinit
var
bar
:
String
constructor
()
{
bar
=
""
}
constructor
(
a
:
Int
)
:
this
(
a
)
{
bar
=
"a"
}
}