aboutsummaryrefslogtreecommitdiff
path: root/tests/exports/reexports.ek
blob: a9b3167fa4ee260cd1a2ae1ccf224a361c71165b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
pub import "defines.ek"

pub typedef exported_struct[reexported_trait T] {}

priv_func() {
	reexported_func(10);

	mut p = exported_struct![i27] {};

	reexported_macro!(p);
}