summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/13 system includes/subprojects/cmMod/sysInc/triggerWarn.hpp
blob: 3b00f2db47ed900ac2c27b8b1e5c52fb153405eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

enum Foo {
    Hello,
    World
};

inline int bar( Foo foo ) {
  switch(foo) {
    case Hello: return 0;
    // Warn because of missung case for World
  }
  return 1;
}