blob: ac9d6a0030d5b1e2f7140ab7c9609489e2432bf5 [file] [log] [blame]
// @dart = 2.9
(int, String b) topLevelFieldType = throw '';
(int, {String b}) topLevelMethodReturnType() => throw '';
const annotation = 1;
void method() {}
void topLevelMethodParameterType((String, @annotation int) o) {}
void topLevelSetterType(({@annotation int a, String b}) value) {}