blob: 26100eb93dc61c9279d4ed9a7e1cc3c4dc533ac2 [file] [log] [blame]
import "package:expect/expect.dart";
List<int> constListAddExceptionFn() {}
const constListAddException = constListAddExceptionFn();
const firstException = firstExceptionFn();
const getWithIndexException = getWithIndexExceptionFn();
const getWithIndexException2 = getWithIndexExceptionFn2();
const getWithIndexException3 = getWithIndexExceptionFn3();
const invalidProperty = invalidPropertyFn();
const lastException = lastExceptionFn();
const singleException = singleExceptionFn();
const singleExceptionMulti = singleExceptionMultiFn();
int firstExceptionFn() {}
int getWithIndexExceptionFn() {}
int getWithIndexExceptionFn2() {}
int getWithIndexExceptionFn3() {}
int invalidPropertyFn() {}
int lastExceptionFn() {}
int singleExceptionFn() {}
int singleExceptionMultiFn() {}
void main() {}