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

~uint lmao

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

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