aboutsummaryrefslogblamecommitdiffhomepage
path: root/development/gcov/cov.cc
blob: 3737d8192dbba70145fe91d0ada2b2a945bf1ec1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                  
// Copyright (C) 2023 johannst

#include <cstdio>

void tell_me(int desc) {
  if (desc & 1) {
    std::puts("this");
  } else {
    std::puts("that");
  }
}

int main(int argc, char *argv[]) {
  tell_me(argc);
  tell_me(argc);
  return 0;
}