aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/single_function_param.sol
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-05-03 03:49:59 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-05-03 04:21:11 +0800
commit07e765a2f1105343ef495fafeb6faa6cf0fefd18 (patch)
tree69a019b5a446e702bec5f404c64ffd513ec887b8 /test/libsolidity/syntaxTests/parsing/single_function_param.sol
parent5cce2e552baf1f7431c99500da74cb929360c3b8 (diff)
downloaddexon-solidity-07e765a2f1105343ef495fafeb6faa6cf0fefd18.tar.gz
dexon-solidity-07e765a2f1105343ef495fafeb6faa6cf0fefd18.tar.zst
dexon-solidity-07e765a2f1105343ef495fafeb6faa6cf0fefd18.zip
Move some parser tests to syntax tests
Diffstat (limited to 'test/libsolidity/syntaxTests/parsing/single_function_param.sol')
-rw-r--r--test/libsolidity/syntaxTests/parsing/single_function_param.sol9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/parsing/single_function_param.sol b/test/libsolidity/syntaxTests/parsing/single_function_param.sol
new file mode 100644
index 00000000..08e531f1
--- /dev/null
+++ b/test/libsolidity/syntaxTests/parsing/single_function_param.sol
@@ -0,0 +1,9 @@
+contract test {
+ uint256 stateVar;
+ function functionName(bytes32 input) returns (bytes32 out) {}
+}
+// ----
+// Warning: (36-97): No visibility specified. Defaulting to "public".
+// Warning: (58-71): Unused function parameter. Remove or comment out the variable name to silence this warning.
+// Warning: (82-93): Unused function parameter. Remove or comment out the variable name to silence this warning.
+// Warning: (36-97): Function state mutability can be restricted to pure