With a spec like:
model Foo { ...Bar, ...Baz }
model Bar { qux: string }
model Baz { qux: string }
It'd be helpful if the error gave the name of the model:
- error duplicate-property: Model already has a property named qux
+ error duplicate-property: Model Foo already has a property named qux
Playground Link