consulo / consulo-csharp

Languages: C#
Apache License 2.0
50 stars 6 forks source link

Nested relative "using" is not resolved #451

Closed PoisonousJohn closed 7 years ago

PoisonousJohn commented 8 years ago

Example:

namespace A.B.C
{
    using D; // full namespace A.D
    public class SomeClass
    {

Consulo suggests to add:

using A.D;

Then it works

Thank you for your great work!

VISTALL commented 8 years ago

Hi. But, all open issues are suspended(i'm working on Consulo 2)

Thanks for issue.

VISTALL commented 7 years ago

Reproduce example:

namespace A.B.C.D {
    public class Test {
    }

}

namespace A.B.C {
    using D;
    public class SomeClass {
            public Test a;
    }
}