Configure spacing after 'while' in while statement

This commit is contained in:
Nikolay Krasko
2013-11-11 17:08:43 +04:00
parent 7587e8ffcb
commit dddde11c6a
4 changed files with 53 additions and 1 deletions
@@ -0,0 +1,22 @@
fun test() {
while (1 == 2) {
}
while (1 == 2) {
}
while (1 == 2) {
}
while (true) {
}
while (true) {
}
while (true)
{
}
while (true)
{
}
}
+23
View File
@@ -0,0 +1,23 @@
fun test() {
while (1 == 2) {
}
while(1 == 2) {
}
while
(1 == 2) {
}
while (true) {
}
while (true){
}
while (true)
{
}
while (true)
{
}
}