Skip to content

Commit 0546651

Browse files
committed
Update manual_tests.cpp
1 parent 9b99095 commit 0546651

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

tests/xtd.core.manual_tests/src/manual_tests.cpp

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
#include <xtd/xtd>
22

3-
class manual_tests static_ {
4-
public:
5-
static auto main(const auto& args) {
6-
console::write_line("Hello, world!");
7-
}
8-
};
3+
namespace manual_tests {
4+
class program static_ {
5+
public:
6+
static auto main(const auto& args) {
7+
console::write_line("Hello, world!");
8+
}
9+
};
10+
}
911

10-
startup_(manual_tests::main);
12+
startup_(manual_tests::program::main);
1113

1214
// This code can produces the following output:
1315
//

0 commit comments

Comments
 (0)