solidity/test/libsolidity/smtCheckerTests/types/string_2.sol
2019-08-10 21:51:46 +02:00

11 lines
166 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() public pure {
string memory s = "Hello World";
}
}
// ----
// Warning: (76-91): Unused local variable.