Advertisement
Guest User

Untitled

a guest
Feb 9th, 2017
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. namespace foo
  4. {
  5.     class TestClass
  6.     {
  7.     public:
  8.         struct fuckingstruct
  9.         {
  10.             std::string clss;
  11.             struct fuckingstruct1
  12.             {
  13.                 int x;
  14.             };
  15.         };
  16.     };
  17. }
  18.  
  19. using namespace std;
  20.  
  21.  
  22. int main()
  23. {
  24.    foo::TestClass::fuckingstruct::fuckingstruct1 test;
  25.    test.x = 3;
  26.    cout << test.x << endl;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement