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

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