blob: 7c2d911dd0c5b8e414ed7ef256c78fda5071432d (
plain)
1
2
3
4
5
6
7
8
|
//TEST:SIMPLE:
// Confirming that we can use a re-exported function
// `a` imports `b` (which defines `foo`) and re-exports it
__import import_exported_a;
float bar(float x) { return foo(x); }
|