summaryrefslogtreecommitdiffstats
path: root/tools/lint/test/files/trojan-source/commenting-out.cpp
blob: d67df70ce1d354573df2ab165b5470c1db2725b6 (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>

int main() {
    bool isAdmin = false;
    /*‮ } ⁦if (isAdmin)⁩ ⁦ begin admins only */
        std::cout << "You are an admin.\n";
    /* end admins only ‮ { ⁦*/
    return 0;
}