You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not an effective test right now for the analyzer:
class T2 {
A getterField;
C setterField;
A get field {
return getterField;
}
// Type C is not assignable to A
void set field(C arg) { setterField = arg; } //# 01: static type warning
}
We actually get an error on A get field. This means our status file is:
getters_setters2_test/01: CompileTimeError
because A get field only fails on test case 01, and CompileTimeError supercedes MissingCompileTimeError?
But this is not a good test of the actual issue.
Maybe its as simple as moving the //# 01 case up to A get field, but I'm filing an issue because test changes are so tedious.
The text was updated successfully, but these errors were encountered:
This is not an effective test right now for the analyzer:
We actually get an error on
A get field
. This means our status file is:because
A get field
only fails on test case 01, and CompileTimeError supercedes MissingCompileTimeError?But this is not a good test of the actual issue.
Maybe its as simple as moving the
//# 01
case up toA get field
, but I'm filing an issue because test changes are so tedious.The text was updated successfully, but these errors were encountered: