#include <iostream>

int foo() {
   int a = 5;
   int b = a + 1;
}

int main() { std::cout << "Test:"; std::cout << foo(); } // may print 6
