blob: 3cff3a9a07d7a846633a5644c77afb0d62d1fcd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// This used to crash in certain compiler versions.
contract CrashContract {
struct S { uint a; }
S x;
function f() public {
(x, x) = 1(x, x);
}
}
// ----
// TypeError: (170-177): Type is not callable
// TypeError: (170-177): Type tuple() is not implicitly convertible to expected type tuple(struct CrashContract.S storage ref,struct CrashContract.S storage ref).
|