From 50ab391133817163641b31f0a0265d2af0af5671 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Wed, 28 Aug 2024 17:09:07 +0300 Subject: [PATCH] test-globals: print something when calling main This shows that constructors and destructors are called in correct order --- userspace/tests/test-globals/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/tests/test-globals/main.cpp b/userspace/tests/test-globals/main.cpp index bf156ae4..c3eaf8ff 100644 --- a/userspace/tests/test-globals/main.cpp +++ b/userspace/tests/test-globals/main.cpp @@ -10,5 +10,5 @@ foo_t foo; int main() { - + printf("main\n"); }