blob: 6ad769d714aa0c21ece99538b3ab1050ed18e4b5 [file] [log] [blame]
import "package:expect/expect.dart";
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() {}