Configure spacing after 'while' in while statement
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
fun test() {
|
||||
while (1 == 2) {
|
||||
}
|
||||
while (1 == 2) {
|
||||
}
|
||||
while (1 == 2) {
|
||||
}
|
||||
|
||||
while (true) {
|
||||
}
|
||||
|
||||
while (true) {
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
fun test() {
|
||||
while (1 == 2) {
|
||||
}
|
||||
while(1 == 2) {
|
||||
}
|
||||
while
|
||||
(1 == 2) {
|
||||
}
|
||||
|
||||
while (true) {
|
||||
}
|
||||
|
||||
while (true){
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user