Looks like constants in namespaces aren't resolved: ``` php namespace Foo; const A = 42; function ($a = A) {} ``` Here, `NameResolver` will leave the name unqualified for the constant fetch. However, it should be FQN: `Foo\A`