packages feed

nix-lang-0.1.0.0: test/fixtures/nixfmt/correct/if-with-comments.nix

v:

# check if v is int
if isInt v then
  # handle int v
  fromInt v
# comments here apply to the branch below, not to the value above
# check if v is bool
else if isBool v then
  # handle bool v
  fromBool v
# no idea what v could be
else
  # we give up
  error "iunno"