Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Same function/class alias namespace confusion #1235

Closed
muglug opened this issue Jan 24, 2019 · 0 comments
Closed

Same function/class alias namespace confusion #1235

muglug opened this issue Jan 24, 2019 · 0 comments
Labels

Comments

@muglug
Copy link
Collaborator

muglug commented Jan 24, 2019

namespace FunctionNamespace {
    function foo() : void {}
}

namespace ClassNamespace {
    class Foo {}
}

namespace {
    use ClassNamespace\Foo;
    use function FunctionNamespace\foo;
    
    new Foo();
  
    foo();
}

Expected: No issue
Actual: UndefinedFunction ClassNamespace\Foo

cc @bendavies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant