summaryrefslogtreecommitdiff
path: root/test/files/run/t7582b.flags
Commit message (Collapse)AuthorAgeFilesLines
* SI-7582 Only inline accessible calls to package-private Java codeJason Zaugg2013-06-191-0/+1
Two problems here. The inliner was using `isPrivate` / `isProtected` to determine access. The fallthrough considered things to be (bytecode) public. This is okay in practice for Scala code, which never emits package private code. Secondly, we must check accessibility of the called symbol *and* its owner. This case is tested in `run/t7582b`. This commit tightens the check for Java defined symbols: a) check the owner, and b) don't assume that `! isPrivate` is accessible.