summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/byte2.C
blob: 717aea85c5ca8791d8dba2d4bf127a993e6af788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile { target c++17 } }
// { dg-options "-Wall" }

#include <cstddef>

bool white_space(std::byte x) {
  switch (x) {
  case std::byte{' '}: case std::byte{'\t'}: case std::byte{'\v'}:
  case std::byte{'\f'}: case std::byte{'\n'}:
  return true;
  default:
    return false;
  }
}