diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-11 22:06:31 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-07-16 21:33:20 +0800 |
commit | 21e97da2949a421987b0c6ad75bd401ce1dad0ab (patch) | |
tree | 71647ef2a4fe439e759aa452bad25b0e2c678a7a /test/libsolidity/syntaxTests/controlFlow | |
parent | 931794001e92cbfe99c91da037cf36a1808d9df1 (diff) | |
download | dexon-solidity-21e97da2949a421987b0c6ad75bd401ce1dad0ab.tar.gz dexon-solidity-21e97da2949a421987b0c6ad75bd401ce1dad0ab.tar.zst dexon-solidity-21e97da2949a421987b0c6ad75bd401ce1dad0ab.zip |
Deprecate the throw statement
Diffstat (limited to 'test/libsolidity/syntaxTests/controlFlow')
-rw-r--r-- | test/libsolidity/syntaxTests/controlFlow/storageReturn/throw_fine.sol | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/libsolidity/syntaxTests/controlFlow/storageReturn/throw_fine.sol b/test/libsolidity/syntaxTests/controlFlow/storageReturn/throw_fine.sol deleted file mode 100644 index 4cecc27c..00000000 --- a/test/libsolidity/syntaxTests/controlFlow/storageReturn/throw_fine.sol +++ /dev/null @@ -1,9 +0,0 @@ -contract C { - struct S { bool f; } - S s; - function f() internal pure returns (S storage) { - throw; - } -} -// ---- -// Warning: (108-113): "throw" is deprecated in favour of "revert()", "require()" and "assert()". |