1contract C {
2    function f() public {
3        bytes memory a;
4        bytes memory b = a.concat();
5    }
6}
7// ----
8// TypeError 9582: (88-96): Member "concat" not found or not visible after argument-dependent lookup in bytes memory.
9