Crystal: formatter bug

Created on 30 Sep 2016  路  1Comment  路  Source: crystal-lang/crystal


def bla(x)
  case x
  # when String
  #   p :string
  when Int32
    p :int32
  end
end

bla(1)

=>

def bla(x)
  case x
    # when String
  #   p :string
when Int32
    p :int32
  end
end

bla(1)
bug topicformatter

Most helpful comment

I knew it! Every time I finish preparing a release someone reports a bug 馃槷

Luckily this is a minor one 馃樃

>All comments

I knew it! Every time I finish preparing a release someone reports a bug 馃槷

Luckily this is a minor one 馃樃

Was this page helpful?
0 / 5 - 0 ratings

Related issues

oprypin picture oprypin  路  3Comments

costajob picture costajob  路  3Comments

nabeelomer picture nabeelomer  路  3Comments

cjgajard picture cjgajard  路  3Comments

Papierkorb picture Papierkorb  路  3Comments