aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/multiVariableDeclaration/multiSingleVariableDeclaration.sol
blob: 7db98577e7be51b8f1c691743161b4d9c92ca88b (plain) (blame)
1
2
3
4
5
6
contract C {
  function f() internal returns (uint) {
    (uint a) = f();
    a;
  }
}