1 2 3 4 5 6 7 8 9 10 11 12 13
// expect: total=13 code=6 comment=4 blank=3 shebang=0 // simple c++ fixture #include <iostream> /* block comment start still comment */ int main() { int x = 1; // inline comment std::cout << "hi" << std::endl; return x; }