bump product version to 6.3.0.0.beta1
[LibreOffice.git] / compilerplugins / clang / store / tutorial / tutorial2_example.cxx
blob7d72ff68ded955e4cfaa224b71549d0e65167492
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 // This is just an example file to see what AST looks like for return statements.
3 // To the AST, run :
4 // clang++ -fsyntax-only -Xclang -ast-dump tutorial1_example.cxx
6 bool g()
8 if( 1 == 2 )
9 return false;
10 if( 1 == 2 )
12 return false;
14 if( true )
15 return false;
18 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */