###prop
setPreferences=true
indentendOnly=true
###src
class Test {
void test(){
//中文 works
def a = 0
}
}
###exp
class Test {
	void test(){
		//中文 works
		def a = 0
	}
}
###end