You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I neglected to add @extendable to my resource, but was able to write a successful Dafny test of the local service. Then I tried a Java equivalent, and it threw an IllegalArgumentException saying custom implementations are not supported. I'm glad Java correctly respected the Smithy model, but it would have saved a fair bit of time if Dafny did in the first place.
Bonus marks if we can encode this as a requires clause somewhere so Dafny code that tries to provide a custom implementation doesn't even verify. :)
The text was updated successfully, but these errors were encountered:
Found this while working on SQSExtended in #666.
I neglected to add
@extendable
to my resource, but was able to write a successful Dafny test of the local service. Then I tried a Java equivalent, and it threw anIllegalArgumentException
saying custom implementations are not supported. I'm glad Java correctly respected the Smithy model, but it would have saved a fair bit of time if Dafny did in the first place.Bonus marks if we can encode this as a
requires
clause somewhere so Dafny code that tries to provide a custom implementation doesn't even verify. :)The text was updated successfully, but these errors were encountered: