#include <typeinfo>
#include <iostream>
 
struct S {};
 
int main()
{
    S s1();
    S s2;
    std::cout << typeid(s1).name() << std::endl;
    std::cout << typeid(s2).name() << std::endl;
}