summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30020-bool.cpp
blob: 9f9e55b27b1146cfb47c7de85f3ee1fd89ef665d (plain)
1
2
3
4
5
6
7
8
9
10
11
bool foo(char c)
{
   if (c == 'a')
   {
      return(true);
   }
   else
   {
      return(false);
   }
}