blob: c577ed72d4ac81d462c1077336f79b912239ed33 [file] [log] [blame]
// "Make 'foo' internal" "true"
// ACTION: Make 'foo' public
// ERROR: Cannot access 'foo': it is private in 'First'
package test
class Second(val f: First) {
fun bar() = f.<caret>foo()
}