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