aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/invalid/empty_function_name.sol
blob: 17995b0939d3b22d2795c43935bebcc02fbef386 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract C {
  function f() public pure {
    assembly {
      function (a, b) {}
    }
  }
}
// ----
// ParserError: (72-73): Expected identifier but got '('
// ParserError: (79-80): Expected ';' but got '{'