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