﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1165	Lookup does not stop when a partially successful lookup fails.	dhedberg	dhedberg	"Consider the following class definition:
{{{
package P

  model A
    P.B b;
  end A;

  model B
  end B;

  package P
  end P;

end P;
}}}

The lookup should fail when trying to resolve the type (P.B) of component b in model P.A.

* The lookup will start the search for P in P.A without success.
* It will continue the search for P in P, and find it (P.P)
* It will fail to find B within P.P, and here it should stop the search. However instead it seems to continue to search for P again, at the top level."	defect	closed	high				fixed		dhedberg Per Östlund
