summaryrefslogtreecommitdiff
path: root/tnslc/test.tnsl
blob: 28f091716652ab06e7ca65832a761d20c3e5ea5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# should not be included

/; whatev (~uint8 a) [uint8]
	return a{0}
;/

/; main [int]
	~uint8 a = "asdf\0"
	whatev(a)
	whatev("asdf\0")
	return 0
;/