// This rule specifies whether the '{' for a new block
// has to start on the the current line or on the next.


// on the same line
class Foo {
    public void blah() {
         if (true) {
             // do something
         }
    }
}

// on the next line
class Foo
{
    pulic void blah()
    {
        if (true)
        {
            // do something
        }
    }
}