From ba92ce2172ba321800e282b694d83a97e703ebde Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Sat, 16 Jun 2012 19:36:00 +0400 Subject: [PATCH] Added protected top-level class and trait into front-end tests. --- compiler/testData/diagnostics/tests/scopes/visibility.jet | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/testData/diagnostics/tests/scopes/visibility.jet b/compiler/testData/diagnostics/tests/scopes/visibility.jet index 6cd73b6f115..f829e203f02 100644 --- a/compiler/testData/diagnostics/tests/scopes/visibility.jet +++ b/compiler/testData/diagnostics/tests/scopes/visibility.jet @@ -1,6 +1,9 @@ //FILE:a.kt package test_visibility +protected class ProtectedClass +protected trait ProtectedTrait + protected val protected_val : Int = 4 protected fun protected_fun() {}