brintos

brintos / llvm-project-archived public Read only

0
0
Text · 227 B · 5485e7d Raw
13 lines · cpp
1// RUN: not %clang_cc1 -fsyntax-only %s2// Note: The important part here is that we don't crash, not any specific errors3class Test {4 public:5  Test() : ab_(false {};6 7  bool ab() {8    return ab_;9  }10 private:11  bool ab_;12}13