aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/assembly_invalid_type.sol
blob: c2d39279f1614cc92215d9399d02b97caa09d99f (plain) (blame)
1
2
3
4
5
6
7
contract C {
  function f() public pure {
    assembly "failasm" {}
  }
}
// ----
// ParserError: (55-64): Only "evmasm" supported.