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

~uint lmao

user.tp a

user.tp(asd, asd) b

~{2}user c

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

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