**`fileA.ts`** ``` TypeScript export function __foo() { } ``` **`fileB.ts`** ``` TypeScript import { __foo/**/ as bar } from "./fileA"; bar(); ``` Try renaming `__foo` at the marker. This won't work.