Last active
August 29, 2015 14:07
-
-
Save BrainKu/9c8d98987ca2fc71d1ac to your computer and use it in GitHub Desktop.
Some code that could not parse by hexo
This file contains hidden or 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
| /* When hexo parse these code, it would be wrong */ | |
| public class Test { | |
| public static class Outter { | |
| String s1 = null; | |
| String s2 = null; | |
| } | |
| public static void main(String[] args) { | |
| Outter[] outters = new Outter[] {{"HEHE","HEHE"},{"HEHE","HEHE"}}; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment