fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Blah
  5. {
  6. char &ref;
  7. public:
  8. Blah(char &c) : ref(c) {}
  9. };
  10.  
  11. int main()
  12. {
  13. cout << sizeof(char &) << endl;
  14. cout << sizeof(Blah) << endl;
  15. }
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
1
4