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
@@ -373,7 +373,7 @@ class IntegerCondition extends PropertyCondition<int> {
373
373
final listPtr = allocate<P>(count: length);
374
374
try {
375
375
for (int i=0; i<length; i++) {
376
-
listPtr.elementAt(i).value = _list[i] as int; // Error: Expected type 'P' to be a valid and instantiated subtype of 'NativeType'. // wtf? Compiler bug?
376
+
listPtr[i] = _list[i] as int; // Error: Expected type 'P' to be a valid and instantiated subtype of 'NativeType'. // wtf? Compiler bug?
0 commit comments