`__FUNCSIG__` is a literal in MSVC, so you can write something like this: ``` char Data[] = __FUNCSIG__; ``` Clang with `-fms-extensions` specified can't compile it: ``` error: array initializer must be an initializer list or string literal ```