aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/ASTJSON/fallback.sol
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-08-07 21:49:23 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-09-11 20:47:25 +0800
commitb6636e2570a14b33fbf53c3f59cca1a9dfb7f824 (patch)
tree04940ced6d9924f3a6a4638aa328a586d0e6a4da /test/libsolidity/ASTJSON/fallback.sol
parent395ab9a872bd8fafc0da7ec166176715ce18eae9 (diff)
downloaddexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar.gz
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar.bz2
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar.lz
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar.xz
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.tar.zst
dexon-solidity-b6636e2570a14b33fbf53c3f59cca1a9dfb7f824.zip
Add new test cases.
Diffstat (limited to 'test/libsolidity/ASTJSON/fallback.sol')
-rw-r--r--test/libsolidity/ASTJSON/fallback.sol4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/libsolidity/ASTJSON/fallback.sol b/test/libsolidity/ASTJSON/fallback.sol
new file mode 100644
index 00000000..4e318892
--- /dev/null
+++ b/test/libsolidity/ASTJSON/fallback.sol
@@ -0,0 +1,4 @@
+contract C {
+ function() external payable {
+ }
+}