summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/store/tutorial/tutorial2_example.cxx
blob: 0a24956cd400aa30b6dad788c26390b01cfecbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This is just an example file to see what AST looks like for return statements.
// To the AST, run :
// clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx

bool g()
    {
    if( 1 == 2 )
        return false;
    if( 1 == 2 )
        {
        return false;
        }
    if( true )
        return false;
    }