###prop
setPreferences=true
indentation=space
tabsize=7
indentsize=4
indentendOnly=true
###src
class C {
  def noExprIndent = {
    if (true)
    a
    else
    af
  }
}
###exp
class C {
    def noExprIndent = {
        if (true)
            a
        else
            af
    }
}
###end