This is my sample code. I used it like this, but I had an error from //error-line.
The following error appeared:
Variable has incomplete type 'std::TestCpp:: TestString'
class TestCpp{
    public:
        any value;
        struct TestString;
        TestCpp(TestString Value){ // error
            this->value = static_cast<any>(Value);
            cout << Value;
        }
};
 
     
    