aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-04 05:03:26 +0800
committerchriseth <chris@ethereum.org>2018-07-04 05:03:26 +0800
commit8ed3da1d5f744337ba96916d9648a6884a25a3e7 (patch)
treea1252005c3a5d1b950ccf77a8c6e7095fa394a72 /test/libsolidity/syntaxTests
parent533d5d4b1cc4374decc704de8c86ad4cef6214fc (diff)
downloaddexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar.gz
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar.bz2
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar.lz
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar.xz
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.tar.zst
dexon-solidity-8ed3da1d5f744337ba96916d9648a6884a25a3e7.zip
Only allow compile-time constants for constant state variables.
Diffstat (limited to 'test/libsolidity/syntaxTests')
-rw-r--r--test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol2
-rw-r--r--test/libsolidity/syntaxTests/nameAndTypeResolution/165_assigning_state_to_const_variable.sol2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol b/test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol
index 88e94e29..0e242b30 100644
--- a/test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol
+++ b/test/libsolidity/syntaxTests/constants/assign_constant_function_value.sol
@@ -3,4 +3,4 @@ contract C {
uint constant y = x();
}
// ----
-// Warning: (74-77): Initial value for constant variable has to be compile-time constant. This will fail to compile with the next breaking version change.
+// TypeError: (74-77): Initial value for constant variable has to be compile-time constant.
diff --git a/test/libsolidity/syntaxTests/nameAndTypeResolution/165_assigning_state_to_const_variable.sol b/test/libsolidity/syntaxTests/nameAndTypeResolution/165_assigning_state_to_const_variable.sol
index f3986580..0de15dfb 100644
--- a/test/libsolidity/syntaxTests/nameAndTypeResolution/165_assigning_state_to_const_variable.sol
+++ b/test/libsolidity/syntaxTests/nameAndTypeResolution/165_assigning_state_to_const_variable.sol
@@ -2,4 +2,4 @@ contract C {
address constant x = msg.sender;
}
// ----
-// Warning: (38-48): Initial value for constant variable has to be compile-time constant. This will fail to compile with the next breaking version change.
+// TypeError: (38-48): Initial value for constant variable has to be compile-time constant.