From cd4c9968dfd03027fca1492fd1600cee4b660854 Mon Sep 17 00:00:00 2001 From: Stanislav Erokhin Date: Thu, 9 Jun 2016 16:35:45 +0300 Subject: [PATCH] Minor. fix test --- .../testData/diagnostics/tests/platformTypes/javaEmptyList.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/testData/diagnostics/tests/platformTypes/javaEmptyList.kt b/compiler/testData/diagnostics/tests/platformTypes/javaEmptyList.kt index 33656a3d663..960988f0aaa 100644 --- a/compiler/testData/diagnostics/tests/platformTypes/javaEmptyList.kt +++ b/compiler/testData/diagnostics/tests/platformTypes/javaEmptyList.kt @@ -5,6 +5,8 @@ import java.util.List public class Collections { public static final List emptyList() { + return null; + } } // FILE: 1.kt