packages feed

headroom-0.4.0.0: test-data/code-samples/cpp/sample1.cpp

/*
 * This is header
 */

#include <iostream>

/* This is not header */

int main() {
    // line comment
    std::cout << "Hello World!";
    return 0;

    /*
     * multiline block comment
     */
}