(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lto/
pr101396_1.C
enum A : __UINT64_TYPE__ { // { dg-lto-note "6: an enum with different value name is defined in another translation unit" }
  a, // { dg-lto-note "3: mismatching definition" }
  b,
  c
};

int f(enum A x)
{
  return (int) x;
}