// direct
@inline
export function foo(): void {
foo();
}
// indirect
export function bar(): void {
baz();
export function baz(): void {
bar();