1  /* Leave unused lines for at least the length of the including source file. */
       2  
       3  
       4  
       5  
       6  
       7  
       8  
       9  
      10  
      11  
      12  
      13  
      14  
      15  
      16  
      17  
      18  
      19  
      20  
      21  struct T {
      22    int i;
      23    T() { i = 0; }
      24  };
      25  
      26  T t;
      27  
      28  int foo()
      29  {
      30    return t.i;                          /* count(1) */
      31  }