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

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