aboutsummaryrefslogtreecommitdiff
path: root/doc/tests/fontes/bits-runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tests/fontes/bits-runtime.cpp')
-rw-r--r--doc/tests/fontes/bits-runtime.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/tests/fontes/bits-runtime.cpp b/doc/tests/fontes/bits-runtime.cpp
new file mode 100644
index 0000000..9fe074f
--- /dev/null
+++ b/doc/tests/fontes/bits-runtime.cpp
@@ -0,0 +1,5 @@
+int main(void) {
+ int *n= (int *)42;
+ *n = 42;
+ return 0;
+}