aboutsummaryrefslogtreecommitdiff
path: root/tests/pointer_literal.ek
blob: ade798822057363d787258dcc701b31ce417a505 (plain) (blame)
1
2
3
4
5
6
7
8
9
typedef i9 {}
typedef i27 {}
typedef ptr {}

main()
{
	*i9 p = 19683 as *i9;
	p* = 'A' as i9;
}