aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/smoke_test.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/libsolidity/syntaxTests/smoke_test.sol')
-rw-r--r--test/libsolidity/syntaxTests/smoke_test.sol6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/smoke_test.sol b/test/libsolidity/syntaxTests/smoke_test.sol
new file mode 100644
index 00000000..2d48098a
--- /dev/null
+++ b/test/libsolidity/syntaxTests/smoke_test.sol
@@ -0,0 +1,6 @@
+contract test {
+ uint256 stateVariable1;
+ function fun(uint256 arg1) public { uint256 y; y = arg1; }
+}
+// ----
+// Warning: Function state mutability can be restricted to pure