diff --git a/upptst/Assist/main.cpp b/upptst/Assist/main.cpp index 4233b86b4..10e1ef9f9 100644 --- a/upptst/Assist/main.cpp +++ b/upptst/Assist/main.cpp @@ -331,6 +331,12 @@ void MYTabs::AddContact() ::AddContact(); // should jump to global namespace 'add contact' } +struct StaticVariableTest { + static int foo; // Alt+I here +}; + +int StaticVariableTest::foo; // Alt+I here + #endif GUI_APP_MAIN