mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #10017 from ethereum/develop
Merge develop into breaking.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
--ir
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
0
|
||||
@@ -0,0 +1,18 @@
|
||||
// SPDX-License-Identifier: GPL-3.0
|
||||
pragma solidity > 0.7.1;
|
||||
|
||||
contract C {
|
||||
function f(uint a, uint b, uint c, uint d) public pure returns (uint, int, uint, uint) {
|
||||
uint w = 2**a;
|
||||
int x = (-2)**b;
|
||||
uint y = 10**c;
|
||||
uint z = (2**256 -1 )**d;
|
||||
|
||||
// Special cases: 0, 1, and -1
|
||||
w = (0)**a;
|
||||
x = (-1)**b;
|
||||
y = 1**c;
|
||||
|
||||
return (w, x, y, z);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,304 @@
|
||||
IR:
|
||||
/*******************************************************
|
||||
* WARNING *
|
||||
* Solidity to Yul compilation is still EXPERIMENTAL *
|
||||
* It can result in LOSS OF FUNDS or worse *
|
||||
* !USE AT YOUR OWN RISK! *
|
||||
*******************************************************/
|
||||
|
||||
|
||||
object "C_80" {
|
||||
code {
|
||||
mstore(64, memoryguard(128))
|
||||
if callvalue() { revert(0, 0) }
|
||||
|
||||
constructor_C_80()
|
||||
|
||||
codecopy(0, dataoffset("C_80_deployed"), datasize("C_80_deployed"))
|
||||
|
||||
return(0, datasize("C_80_deployed"))
|
||||
|
||||
function constructor_C_80() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
object "C_80_deployed" {
|
||||
code {
|
||||
mstore(64, memoryguard(128))
|
||||
|
||||
if iszero(lt(calldatasize(), 4))
|
||||
{
|
||||
let selector := shift_right_224_unsigned(calldataload(0))
|
||||
switch selector
|
||||
|
||||
case 0x70cb9605
|
||||
{
|
||||
// f(uint256,uint256,uint256,uint256)
|
||||
if callvalue() { revert(0, 0) }
|
||||
let param_0, param_1, param_2, param_3 := abi_decode_tuple_t_uint256t_uint256t_uint256t_uint256(4, calldatasize())
|
||||
let ret_0, ret_1, ret_2, ret_3 := fun_f_79(param_0, param_1, param_2, param_3)
|
||||
let memPos := allocateMemory(0)
|
||||
let memEnd := abi_encode_tuple_t_uint256_t_int256_t_uint256_t_uint256__to_t_uint256_t_int256_t_uint256_t_uint256__fromStack(memPos , ret_0, ret_1, ret_2, ret_3)
|
||||
return(memPos, sub(memEnd, memPos))
|
||||
}
|
||||
|
||||
default {}
|
||||
}
|
||||
if iszero(calldatasize()) { }
|
||||
revert(0, 0)
|
||||
|
||||
function abi_decode_t_uint256(offset, end) -> value {
|
||||
value := calldataload(offset)
|
||||
validator_revert_t_uint256(value)
|
||||
}
|
||||
|
||||
function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3 {
|
||||
if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }
|
||||
|
||||
{
|
||||
let offset := 0
|
||||
value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)
|
||||
}
|
||||
|
||||
{
|
||||
let offset := 32
|
||||
value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)
|
||||
}
|
||||
|
||||
{
|
||||
let offset := 64
|
||||
value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)
|
||||
}
|
||||
|
||||
{
|
||||
let offset := 96
|
||||
value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function abi_encode_t_int256_to_t_int256_fromStack(value, pos) {
|
||||
mstore(pos, cleanup_t_int256(value))
|
||||
}
|
||||
|
||||
function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {
|
||||
mstore(pos, cleanup_t_uint256(value))
|
||||
}
|
||||
|
||||
function abi_encode_tuple_t_uint256_t_int256_t_uint256_t_uint256__to_t_uint256_t_int256_t_uint256_t_uint256__fromStack(headStart , value0, value1, value2, value3) -> tail {
|
||||
tail := add(headStart, 128)
|
||||
|
||||
abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))
|
||||
|
||||
abi_encode_t_int256_to_t_int256_fromStack(value1, add(headStart, 32))
|
||||
|
||||
abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))
|
||||
|
||||
abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))
|
||||
|
||||
}
|
||||
|
||||
function allocateMemory(size) -> memPtr {
|
||||
memPtr := mload(64)
|
||||
let newFreePtr := add(memPtr, size)
|
||||
// protect against overflow
|
||||
if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error() }
|
||||
mstore(64, newFreePtr)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_0_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
power := exp(0, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_10_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
if gt(exponent, 77) { panic_error() }
|
||||
|
||||
power := exp(10, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
if gt(exponent, 1) { panic_error() }
|
||||
|
||||
power := exp(115792089237316195423570985008687907853269984665640564039457584007913129639935, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_1_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
power := exp(1, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_2_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
if gt(exponent, 255) { panic_error() }
|
||||
|
||||
power := exp(2, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_minus_1_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
power := exp(115792089237316195423570985008687907853269984665640564039457584007913129639935, exponent)
|
||||
}
|
||||
|
||||
function checked_exp_t_rational_minus_2_by_1_t_uint256(exponent) -> power {
|
||||
exponent := cleanup_t_uint256(exponent)
|
||||
|
||||
if gt(exponent, 255) { panic_error() }
|
||||
|
||||
power := exp(115792089237316195423570985008687907853269984665640564039457584007913129639934, exponent)
|
||||
}
|
||||
|
||||
function cleanup_t_int256(value) -> cleaned {
|
||||
cleaned := value
|
||||
}
|
||||
|
||||
function cleanup_t_uint256(value) -> cleaned {
|
||||
cleaned := value
|
||||
}
|
||||
|
||||
function convert_t_rational_0_by_1_to_t_uint256(value) -> converted {
|
||||
converted := cleanup_t_uint256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_10_by_1_to_t_uint256(value) -> converted {
|
||||
converted := cleanup_t_uint256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256(value) -> converted {
|
||||
converted := cleanup_t_uint256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_1_by_1_to_t_uint256(value) -> converted {
|
||||
converted := cleanup_t_uint256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_2_by_1_to_t_uint256(value) -> converted {
|
||||
converted := cleanup_t_uint256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_minus_1_by_1_to_t_int256(value) -> converted {
|
||||
converted := cleanup_t_int256(value)
|
||||
}
|
||||
|
||||
function convert_t_rational_minus_2_by_1_to_t_int256(value) -> converted {
|
||||
converted := cleanup_t_int256(value)
|
||||
}
|
||||
|
||||
function fun_f_79(vloc_a_3, vloc_b_5, vloc_c_7, vloc_d_9) -> vloc__12, vloc__14, vloc__16, vloc__18 {
|
||||
let zero_value_for_type_t_uint256_1 := zero_value_for_split_t_uint256()
|
||||
vloc__12 := zero_value_for_type_t_uint256_1
|
||||
let zero_value_for_type_t_int256_2 := zero_value_for_split_t_int256()
|
||||
vloc__14 := zero_value_for_type_t_int256_2
|
||||
let zero_value_for_type_t_uint256_3 := zero_value_for_split_t_uint256()
|
||||
vloc__16 := zero_value_for_type_t_uint256_3
|
||||
let zero_value_for_type_t_uint256_4 := zero_value_for_split_t_uint256()
|
||||
vloc__18 := zero_value_for_type_t_uint256_4
|
||||
|
||||
let expr_22 := 0x02
|
||||
let _5 := vloc_a_3
|
||||
let expr_23 := _5
|
||||
let _6 := convert_t_rational_2_by_1_to_t_uint256(expr_22)
|
||||
let expr_24 := checked_exp_t_rational_2_by_1_t_uint256(expr_23)
|
||||
let vloc_w_21 := expr_24
|
||||
let expr_28 := 0x02
|
||||
let expr_29 := 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe
|
||||
let expr_30 := expr_29
|
||||
let _7 := vloc_b_5
|
||||
let expr_31 := _7
|
||||
let _8 := convert_t_rational_minus_2_by_1_to_t_int256(expr_30)
|
||||
let expr_32 := checked_exp_t_rational_minus_2_by_1_t_uint256(expr_31)
|
||||
let vloc_x_27 := expr_32
|
||||
let expr_36 := 0x0a
|
||||
let _9 := vloc_c_7
|
||||
let expr_37 := _9
|
||||
let _10 := convert_t_rational_10_by_1_to_t_uint256(expr_36)
|
||||
let expr_38 := checked_exp_t_rational_10_by_1_t_uint256(expr_37)
|
||||
let vloc_y_35 := expr_38
|
||||
let expr_46 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
let expr_47 := expr_46
|
||||
let _11 := vloc_d_9
|
||||
let expr_48 := _11
|
||||
let _12 := convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256(expr_47)
|
||||
let expr_49 := checked_exp_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_t_uint256(expr_48)
|
||||
let vloc_z_41 := expr_49
|
||||
let expr_52 := 0x00
|
||||
let expr_53 := expr_52
|
||||
let _13 := vloc_a_3
|
||||
let expr_54 := _13
|
||||
let _14 := convert_t_rational_0_by_1_to_t_uint256(expr_53)
|
||||
let expr_55 := checked_exp_t_rational_0_by_1_t_uint256(expr_54)
|
||||
vloc_w_21 := expr_55
|
||||
let expr_56 := expr_55
|
||||
let expr_59 := 0x01
|
||||
let expr_60 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
let expr_61 := expr_60
|
||||
let _15 := vloc_b_5
|
||||
let expr_62 := _15
|
||||
let _16 := convert_t_rational_minus_1_by_1_to_t_int256(expr_61)
|
||||
let expr_63 := checked_exp_t_rational_minus_1_by_1_t_uint256(expr_62)
|
||||
vloc_x_27 := expr_63
|
||||
let expr_64 := expr_63
|
||||
let expr_67 := 0x01
|
||||
let _17 := vloc_c_7
|
||||
let expr_68 := _17
|
||||
let _18 := convert_t_rational_1_by_1_to_t_uint256(expr_67)
|
||||
let expr_69 := checked_exp_t_rational_1_by_1_t_uint256(expr_68)
|
||||
vloc_y_35 := expr_69
|
||||
let expr_70 := expr_69
|
||||
let _19 := vloc_w_21
|
||||
let expr_72 := _19
|
||||
let expr_76_component_1 := expr_72
|
||||
let _20 := vloc_x_27
|
||||
let expr_73 := _20
|
||||
let expr_76_component_2 := expr_73
|
||||
let _21 := vloc_y_35
|
||||
let expr_74 := _21
|
||||
let expr_76_component_3 := expr_74
|
||||
let _22 := vloc_z_41
|
||||
let expr_75 := _22
|
||||
let expr_76_component_4 := expr_75
|
||||
vloc__12 := expr_76_component_1
|
||||
vloc__14 := expr_76_component_2
|
||||
vloc__16 := expr_76_component_3
|
||||
vloc__18 := expr_76_component_4
|
||||
leave
|
||||
|
||||
}
|
||||
|
||||
function panic_error() {
|
||||
invalid()
|
||||
}
|
||||
|
||||
function shift_right_224_unsigned(value) -> newValue {
|
||||
newValue :=
|
||||
|
||||
shr(224, value)
|
||||
|
||||
}
|
||||
|
||||
function validator_revert_t_uint256(value) {
|
||||
if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }
|
||||
}
|
||||
|
||||
function zero_value_for_split_t_int256() -> ret {
|
||||
ret := 0
|
||||
}
|
||||
|
||||
function zero_value_for_split_t_uint256() -> ret {
|
||||
ret := 0
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
contract C {
|
||||
function exp_2(uint y) public returns (uint) {
|
||||
return 2**y;
|
||||
}
|
||||
function exp_minus_2(uint y) public returns (int) {
|
||||
return (-2)**y;
|
||||
}
|
||||
|
||||
function exp_uint_max(uint y) public returns (uint) {
|
||||
return (2**256 - 1)**y;
|
||||
}
|
||||
function exp_int_max(uint y) public returns (int) {
|
||||
return ((-2)**255)**y;
|
||||
}
|
||||
|
||||
function exp_5(uint y) public returns (uint) {
|
||||
return 5**y;
|
||||
}
|
||||
function exp_minus_5(uint y) public returns (int) {
|
||||
return (-5)**y;
|
||||
}
|
||||
|
||||
function exp_256(uint y) public returns (uint) {
|
||||
return 256**y;
|
||||
}
|
||||
function exp_minus_256(uint y) public returns (int) {
|
||||
return (-256)**y;
|
||||
}
|
||||
|
||||
}
|
||||
// ====
|
||||
// compileViaYul: true
|
||||
// ----
|
||||
// exp_2(uint256): 255 -> 57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_2(uint256): 256 -> FAILURE
|
||||
// exp_minus_2(uint256): 255 -> -57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_minus_2(uint256): 256 -> FAILURE
|
||||
// exp_uint_max(uint256): 1 -> 115792089237316195423570985008687907853269984665640564039457584007913129639935
|
||||
// exp_uint_max(uint256): 2 -> FAILURE
|
||||
// exp_int_max(uint256): 1 -> -57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_int_max(uint256): 2 -> FAILURE
|
||||
// exp_5(uint256): 110 -> 77037197775489434122239117703397092741524065928615527809597551822662353515625
|
||||
// exp_5(uint256): 111 -> FAILURE
|
||||
// exp_minus_5(uint256): 109 -> -15407439555097886824447823540679418548304813185723105561919510364532470703125
|
||||
// exp_minus_5(uint256): 110 -> FAILURE
|
||||
// exp_256(uint256): 31 -> 452312848583266388373324160190187140051835877600158453279131187530910662656
|
||||
// exp_256(uint256): 32 -> FAILURE
|
||||
// exp_minus_256(uint256): 31 -> -452312848583266388373324160190187140051835877600158453279131187530910662656
|
||||
// exp_minus_256(uint256): 32 -> FAILURE
|
||||
@@ -0,0 +1,41 @@
|
||||
contract C {
|
||||
function exp_2(uint y) public returns (uint) {
|
||||
return 2**y;
|
||||
}
|
||||
function exp_minus_2(uint y) public returns (int) {
|
||||
return (-2)**y;
|
||||
}
|
||||
|
||||
function exp_uint_max(uint y) public returns (uint) {
|
||||
return (2**256 - 1)**y;
|
||||
}
|
||||
function exp_int_max(uint y) public returns (int) {
|
||||
return ((-2)**255)**y;
|
||||
}
|
||||
|
||||
function exp_5(uint y) public returns (uint) {
|
||||
return 5**y;
|
||||
}
|
||||
function exp_minus_5(uint y) public returns (int) {
|
||||
return (-5)**y;
|
||||
}
|
||||
|
||||
function exp_256(uint y) public returns (uint) {
|
||||
return 256**y;
|
||||
}
|
||||
function exp_minus_256(uint y) public returns (int) {
|
||||
return (-256)**y;
|
||||
}
|
||||
|
||||
}
|
||||
// ====
|
||||
// compileViaYul: also
|
||||
// ----
|
||||
// exp_2(uint256): 255 -> 57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_minus_2(uint256): 255 -> -57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_uint_max(uint256): 1 -> 115792089237316195423570985008687907853269984665640564039457584007913129639935
|
||||
// exp_int_max(uint256): 1 -> -57896044618658097711785492504343953926634992332820282019728792003956564819968
|
||||
// exp_5(uint256): 110 -> 77037197775489434122239117703397092741524065928615527809597551822662353515625
|
||||
// exp_minus_5(uint256): 109 -> -15407439555097886824447823540679418548304813185723105561919510364532470703125
|
||||
// exp_256(uint256): 31 -> 452312848583266388373324160190187140051835877600158453279131187530910662656
|
||||
// exp_minus_256(uint256): 31 -> -452312848583266388373324160190187140051835877600158453279131187530910662656
|
||||
@@ -4,8 +4,9 @@ contract C
|
||||
{
|
||||
function f() public pure {
|
||||
uint[3] memory array = [uint(1), 2, 3];
|
||||
assert(array[0] == 1);
|
||||
assert(array[1] == 2);
|
||||
assert(array[2] == 3);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 2072: (76-96): Unused local variable.
|
||||
// Warning 2177: (99-114): Assertion checker does not yet implement inline arrays.
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
function f() public pure {
|
||||
uint[3] memory a = [uint(1), 2, 3];
|
||||
uint[3] memory b = [uint(1), 2, 4];
|
||||
assert(a[0] == b[0]);
|
||||
assert(a[1] == b[1]);
|
||||
assert(a[2] == b[2]); // fails
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 6328: (200-220): CHC: Assertion violation happens here.
|
||||
@@ -0,0 +1,13 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
function f() public pure {
|
||||
(uint[3] memory a, uint[3] memory b) = ([uint(1), 2, 3], [uint(1), 2, 4]);
|
||||
assert(a[0] == b[0]);
|
||||
assert(a[1] == b[1]);
|
||||
assert(a[2] == b[2]); // fails
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 6328: (201-221): CHC: Assertion violation happens here.
|
||||
@@ -0,0 +1,13 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
function f(bool c) public pure {
|
||||
uint[3] memory a = c ? [uint(1), 2, 3] : [uint(1), 2, 4];
|
||||
uint[3] memory b = [uint(1), 2, c ? 3 : 4];
|
||||
assert(a[0] == b[0]);
|
||||
assert(a[1] == b[1]);
|
||||
assert(a[2] == b[2]);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,16 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
uint[] s;
|
||||
function f() public {
|
||||
uint[3] memory a = [uint(1), 2, 3];
|
||||
s = a;
|
||||
assert(s.length == a.length);
|
||||
assert(s[0] == a[0]);
|
||||
assert(s[1] == a[1]);
|
||||
assert(s[2] != a[2]); // fails
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 6328: (209-229): CHC: Assertion violation happens here.
|
||||
@@ -0,0 +1,18 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
function f() public pure {
|
||||
uint[3] memory a = [uint(1), 2, 3];
|
||||
uint[4] memory b = [uint(1), 2, 4, 3];
|
||||
uint[4] memory c = b;
|
||||
assert(a.length == c.length); // fails
|
||||
assert(a[0] == c[0]);
|
||||
assert(a[1] == c[1]);
|
||||
assert(a[2] == c[2]); // fails
|
||||
assert(a[2] == c[3]);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 6328: (179-207): CHC: Assertion violation happens here.
|
||||
// Warning 6328: (268-288): CHC: Assertion violation happens here.
|
||||
@@ -0,0 +1,23 @@
|
||||
pragma experimental SMTChecker;
|
||||
|
||||
contract C
|
||||
{
|
||||
uint[] s;
|
||||
function f() public {
|
||||
uint[3] memory a = [uint(1), 2, 3];
|
||||
uint[4] memory b = [uint(1), 2, 4, 3];
|
||||
uint[4] memory c = b;
|
||||
assert(c.length == b.length);
|
||||
s = a;
|
||||
assert(s.length == a.length);
|
||||
|
||||
assert(s.length == c.length); // fails
|
||||
assert(s[0] == c[0]);
|
||||
assert(s[1] == c[1]);
|
||||
assert(s[2] == c[2]); // fails
|
||||
assert(s[2] == c[3]);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 6328: (259-287): CHC: Assertion violation happens here.
|
||||
// Warning 6328: (348-368): CHC: Assertion violation happens here.
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
==== Source: A ====
|
||||
pragma experimental ABIEncoderV2;
|
||||
|
||||
struct Item {
|
||||
uint x;
|
||||
}
|
||||
|
||||
contract C {
|
||||
event Ev(Item);
|
||||
}
|
||||
==== Source: B ====
|
||||
import "A";
|
||||
|
||||
contract D is C {}
|
||||
// ----
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
==== Source: A ====
|
||||
pragma experimental ABIEncoderV2;
|
||||
|
||||
contract C {
|
||||
struct Item {
|
||||
uint x;
|
||||
}
|
||||
|
||||
function get(Item memory) external view {}
|
||||
}
|
||||
==== Source: B ====
|
||||
import "A";
|
||||
|
||||
contract D is C {}
|
||||
// ----
|
||||
// TypeError 6594: (B:13-31): Contract "D" does not use ABIEncoderV2 but wants to inherit from a contract which uses types that require it. Use "pragma experimental ABIEncoderV2;" for the inheriting contract as well to enable the feature.
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
==== Source: A ====
|
||||
pragma experimental ABIEncoderV2;
|
||||
|
||||
contract C {
|
||||
struct Item {
|
||||
uint x;
|
||||
}
|
||||
|
||||
function get() external view returns(Item memory) {}
|
||||
}
|
||||
==== Source: B ====
|
||||
import "A";
|
||||
|
||||
contract D is C {}
|
||||
// ----
|
||||
// TypeError 6594: (B:13-31): Contract "D" does not use ABIEncoderV2 but wants to inherit from a contract which uses types that require it. Use "pragma experimental ABIEncoderV2;" for the inheriting contract as well to enable the feature.
|
||||
Reference in New Issue
Block a user