Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- namespace foo
- {
- class TestClass
- {
- public:
- struct fuckingstruct
- {
- std::string clss;
- struct fuckingstruct1
- {
- int x;
- };
- };
- };
- }
- using namespace std;
- int main()
- {
- foo::TestClass::fuckingstruct::fuckingstruct1 test;
- test.x = 3;
- cout << test.x << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement