aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/multiVariableDeclaration/multiVariableDeclarationScoping.sol
blob: 224d96144665ab232dc6026cdfa975c3c7e4e3fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract C {
  function f() internal {
    {
      (uint a, uint b, uint c) = (1, 2, 3);
    }
    a;
  }
} 
// ----
// DeclarationError: (99-100): Undeclared identifier.