fixup! Syntax for custom errors.

This commit is contained in:
chriseth 2021-02-02 12:12:18 +01:00
parent 0ede2d2df3
commit 14a5c76f17

View File

@ -0,0 +1,6 @@
struct S {uint a;}
contract C {
error MyError(S);
error MyError2(S t);
}
// ----