Priority
Show-stopper
Type
Bug 
State
Fixed 
Assignee
Olga Lobacheva 
Subsystem
No subsystem 
Affected versions
Fixed in
Fixed in build
Next build 
Build
444
Fixed in build
500
  • Submitted by   Vladimir Reshetnikov
    2 years ago (26 May 2007 16:52)
  • Updated by Vladimir Reshetnikov
    2 years ago (20 Jun 2007 20:43)
  • Jira: RSRP-41492
    (history, comments)

RSRP-41492

'Move class to another namespace' breaks code

0
namespace N
{
    using Q = A<int>;

    public class A<T>
    {
    }

    public class B : Q
    {
    }
}


Move classes to namespace M.

namespace M
{
    public class A<T>
    {
    }

    public class B : A // error CS0305: Using the generic type 'M.A<T>' requires '1' type arguments
    {
    }
}


Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments