solidity/test/cmdlineTests/message_format/input.sol
2020-05-13 18:16:59 +02:00

104 lines
399 B
Solidity

// checks that error messages around power-or-10 lines are formatted correctly
// SPDX-License-Identifier: GPL-3.0
contract C {
function f() public { int x; }
function g() public { int x; }
function h() public {
/**/ int a; /**/
/**/ int b; /**/
/**/ int c; /**/
}
}