mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Allow this.f.selector to be pure.
This commit is contained in:
@@ -6904,15 +6904,7 @@ BOOST_AUTO_TEST_CASE(function_types_sig)
|
||||
CHECK_ERROR(text, TypeError, "Member \"selector\" not found");
|
||||
text = R"(
|
||||
contract C {
|
||||
function f() view external returns (bytes4) {
|
||||
return this.f.selector;
|
||||
}
|
||||
}
|
||||
)";
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
text = R"(
|
||||
contract C {
|
||||
function f() view external returns (bytes4) {
|
||||
function f() pure external returns (bytes4) {
|
||||
return this.f.selector;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -326,6 +326,52 @@ BOOST_AUTO_TEST_CASE(function_types)
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(selector)
|
||||
{
|
||||
string text = R"(
|
||||
contract C {
|
||||
function f() payable public {
|
||||
}
|
||||
function g() pure public returns (bytes4) {
|
||||
return this.f.selector;
|
||||
}
|
||||
}
|
||||
)";
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(selector_complex)
|
||||
{
|
||||
string text = R"(
|
||||
contract C {
|
||||
function f(C c) pure public returns (C) {
|
||||
return c;
|
||||
}
|
||||
function g() pure public returns (bytes4) {
|
||||
// By passing `this`, we read from the state, even if f itself is pure.
|
||||
return f(this).f.selector;
|
||||
}
|
||||
}
|
||||
)";
|
||||
CHECK_ERROR(text, TypeError, "reads from the environment or state and thus requires \"view\"");
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(selector_complex2)
|
||||
{
|
||||
string text = R"(
|
||||
contract C {
|
||||
function f() payable public returns (C) {
|
||||
return this;
|
||||
}
|
||||
function g() pure public returns (bytes4) {
|
||||
C x = C(0x123);
|
||||
return x.f.selector;
|
||||
}
|
||||
}
|
||||
)";
|
||||
CHECK_SUCCESS_NO_WARNINGS(text);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(creation)
|
||||
{
|
||||
string text = R"(
|
||||
|
||||
Reference in New Issue
Block a user