aboutsummaryrefslogtreecommitdiff
path: root/tests/trait_recursive_expand.ek
blob: 53012bfbaa21aca4c99b16c9f9caebbcfeb36440 (plain) (blame)
1
2
3
4
5
6
7
8
define b[] {
	a![];
}

define a[] {
	b![];
	a(*a a);
}