Small update of the French translation
[geany-mirror.git] / tests / ctags / bug1799343-1.cpp
blob556be1d9e1e27f064b34c234b484734826b790ff
1 #include <iostream>
2 struct C { int x; };
3 struct D : ::C {
4 D() { x = 123; }
5 ~D() { std::cout << x << std::endl; }
6 };
7 int main(void) {
8 D d;
9 return 0;