aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/multiVariableDeclaration/multiVariableDeclarationScoping.sol
blob: 3ba85f69e495ad64ccd586a5a1becabc10013ad5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
pragma experimental "v0.5.0";

contract C {
  function f() internal {
    {
      (uint a, uint b, uint c) = (1, 2, 3);
    }
    a;
  }
} 
// ----
// DeclarationError: (130-131): Undeclared identifier.