Open
Description
Repro:
extension on int {
(bool, bool, {int v, int v2}) get record => (
myBool,
myBool2(),
v: v,
v2: v2(),
);
}
Results:
- On stable, we get
Create getter
but not on master - The generated getter/method doesn't calculate the expected return type
- At the non-invocation cases, we also get a
Create mixin
I'll take a look into this.