//#Unsafe /* * Date: 2018-12-26 * Author: heizmann@informatik.uni-freiburg.de * * Before the introduction of the stack-heap barrier, * we returned an incorrect result on this example. * */ #include char *string = "Sllr"; int main() { free(&string); return 0; }