import { of as just } from "rxjs/observable/of";

function foo(): void {
    function of(): void {}
    of();
}

function bar(of: Function): void {
    of();
}

function baz(): void {
    const of = () => {};
    of();
}

