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() {}