summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/cxx_binary_literals.cpp
blob: 14a9e7523e9567ed878b3f674cf0a9c635ddd397 (plain)
1
2
3
4
5
6

int someFunc()
{
  int i = 0b101;
  return i - 5;
}