    #include <iostream>
    #include <fstream>
    using namespace std;
    struct stabc
    {
        ofstream &t;
        stabc(ofstream &obj):t(obj){}
    };
    
    int main()
    {
        ofstream obj2;
        stabc obj(obj2);
        return 0;
    }
   