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

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