diff --git a/C_C++/no_way.cpp b/C_C++/no_way.cpp
new file mode 100644
index 0000000..ed8326b
--- /dev/null
+++ b/C_C++/no_way.cpp
@@ -0,0 +1,22 @@
+// @BAKE g++ $@ -O1 -Wall
+#include <iostream>
+
+int main() {
+    while (1)
+        ;
+}
+
+void unreachable() {
+    std::cout << "Hello world!" << std::endl;
+}
+
+/*
+    clang version 18.1.5
+    Target: x86_64-pc-linux-gnu
+    Thread model: posix
+    InstalledDir: /usr/lib/llvm/18/bin
+    Configuration file: /etc/clang/x86_64-pc-linux-gnu-clang.cfg
+
+    $ a.out
+    Hello world!
+*/