1 #ifndef X_H 2 #define X_H 3 4 struct X 5 { 6 int i; 7 XX8 X( int i_) : 9 i( i_) 10 {} 11 }; 12 13 #endif // X_H 14