diff --git a/compiler/testData/diagnostics/tests/smartCasts/loops/whileWithAssertInConditionAndBreakAfter.kt b/compiler/testData/diagnostics/tests/smartCasts/loops/whileWithAssertInConditionAndBreakAfter.kt index 0a21dea3922..9a6a6f19871 100644 --- a/compiler/testData/diagnostics/tests/smartCasts/loops/whileWithAssertInConditionAndBreakAfter.kt +++ b/compiler/testData/diagnostics/tests/smartCasts/loops/whileWithAssertInConditionAndBreakAfter.kt @@ -7,7 +7,8 @@ fun foo() { break } - x.length // 'x' is unsoundly smartcasted here + // TODO: this testdata fixates undesired behavior (it should be an unsafe call) + x.length // 'x' is unsoundly smartcasted here } fun bar() { @@ -17,5 +18,6 @@ fun bar() { break } - x.size // 'x' is unsoundly smartcasted here + // TODO: this testdata fixates undesired behavior (it should be an unsafe call) + x.size // 'x' is unsoundly smartcasted here } \ No newline at end of file