From 59716fec9c68fe2b266c92ae7a1b02d5e6f566db Mon Sep 17 00:00:00 2001 From: Wojciech Lopata Date: Tue, 16 Apr 2013 12:46:29 +0200 Subject: [PATCH] Cleanup in a test --- .../diagnostics/tests/nullabilityAndAutoCasts/kt362.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/kt362.kt b/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/kt362.kt index f367e64fbe3..0bea08369bd 100644 --- a/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/kt362.kt +++ b/compiler/testData/diagnostics/tests/nullabilityAndAutoCasts/kt362.kt @@ -8,9 +8,9 @@ fun test() { if (p.public is Int) p.public + 1 if (p.protected is Int) p.protected + 1 if (p.internal is Int) p.internal + 1 - val i = test.Public() - if (i.public is Int) i.public + 1 - if (i.protected is Int) i.protected + 1 + val i = test.Internal() + if (i.public is Int) i.public + 1 + if (i.protected is Int) i.protected + 1 if (i.internal is Int) i.internal + 1 }