summaryrefslogtreecommitdiff
path: root/test/const-function-if.mnml
blob: 48fc4fba0dcf4be310eeb847895b238a60892b99 (plain)
1
2
3
4
5
6
7
8
9
const main: function = (input: string): void {
  if (input == "hello") {
	const bye: string = "bye"
  }

  return input
}

main(input = "hello")