forked from jboss-javassist/javassist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jboss-javassist#267 from sam-ma/master
Fix jboss-javassist#265 javassist.CannotCompileException: [source error] the called …
- Loading branch information
Showing
3 changed files
with
67 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package test5; | ||
|
||
public class NestHost4 { | ||
public void test() { | ||
new InnerClass1().new InnerClass5(); | ||
} | ||
|
||
private class InnerClass1 { | ||
private InnerClass1() { | ||
new InnerClass2(); | ||
} | ||
|
||
private class InnerClass5 { | ||
private InnerClass5() { | ||
new InnerClass2().new InnerClass3(); | ||
} | ||
} | ||
} | ||
|
||
private class InnerClass2 { | ||
|
||
private class InnerClass3 { | ||
|
||
} | ||
} | ||
} |