summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ctest_labels_for_subprojects/MyExperimentalFeature/experimental.c
blob: 7cb11ae506d3a60fd6b4b81ae27c01ccd994e549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

int main(void)
{
  int i = 0;
  if (i > 0) {
    printf("This doesn't happen.\n");
    printf("Neither does this.\n");
  }
  i = i + 1;
  if (i > 0) {
    printf("This does happen.\n");
  }

  return 0;
}