﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1419	Extends are not handled correctly in InstExtends	Per Östlund	Per Östlund	"The following model:
{{{
package P
  model A
    model B
      extends C;
    end B;

    B b;
  end A;

  model C end C;
end P;

model D
  extends P.A;
end D;
}}}
gives the error message:
{{{
[extends2.mo:4:7-4:16:writable] Error: Base class C not found in scope D.B
}}}
This is probably because when D extends P.A, InstExtends copies the contents of P.A into D. But P.A.B extends C, which is not reachable from D."	defect	closed	high				fixed		Per Östlund Adrian Pop
