tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / compilerplugins / clang / store / tutorial / tutorial1_example.cxx
blob1ec0e1e59aa024cc40c0a3d1b071faecc11ee7ae
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 void f()
8 return;
11 bool g()
13 return false;
16 bool h()
18 return 3 > 2;
21 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */