﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
57	Over specific runs on not triggered in obvious cases	phdmakk	phdmakk	"The check for over specific runs on clauses is not triggered in obvious cases

Considering the example below, calling a function that runs on a different component and references its elements will cause the check for over specific runs on to fail on the calling function.

{{{
module Issue1m {

	type component C1 {
	}

	type component C2 {
		var integer vc_I;
	}

	function f_F1 () runs on C1 {
		f_F2(); //This fixes the over-specific runs on even though it has nothing to do with it
	}

	function f_F2 () runs on C2 {
		vc_I := 1;
	}
}
}}}"	defect	closed	major	v2.0.0 Series	T3Q	2.0	fixed		
