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

main()
{
	*i9 p = 0 as *i9;
	*i9 a = p*&;
	a = p*&*&;
	a = p&*;
	i9 b = p&**&*;
}