14 lines · cpp
1namespace std {2namespace __1 {3static const char *__impl2() { return "Break here"; }4static const char *__impl1() { return __impl2(); }5static const char *__impl() { return __impl1(); }6static const char *non_impl() { return __impl(); }7} // namespace __18} // namespace std9 10int main() {11 std::__1::non_impl();12 __builtin_debugtrap();13}14