We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b99095 commit 0546651Copy full SHA for 0546651
tests/xtd.core.manual_tests/src/manual_tests.cpp
@@ -1,13 +1,15 @@
1
#include <xtd/xtd>
2
3
-class manual_tests static_ {
4
-public:
5
- static auto main(const auto& args) {
6
- console::write_line("Hello, world!");
7
- }
8
-};
+namespace manual_tests {
+ class program static_ {
+ public:
+ static auto main(const auto& args) {
+ console::write_line("Hello, world!");
+ }
9
+ };
10
+}
11
-startup_(manual_tests::main);
12
+startup_(manual_tests::program::main);
13
14
// This code can produces the following output:
15
//
0 commit comments