Skip to content

Instantly share code, notes, and snippets.

View EAirPeter's full-sized avatar

EAirPeter EAirPeter

View GitHub Profile
@EAirPeter
EAirPeter / ub.cpp
Created November 18, 2021 17:17
Try it with clang
#include <cstdio>
using namespace std;
void Foo(void) {
//puts("Foo Start");
for (int i = 0; i >= 0; ++i) {
// Undefined behavior
}
puts("Foo End");