repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git]
/
clang
/
test
/
Parser
/
cxx-member-init-missing-paren-crash.cpp
blob
5485e7d2d5c3c09667d21496df238dfcb7ef2e10
1
// RUN: not %clang_cc1 -fsyntax-only %s
2
// Note: The important part here is that we don't crash, not any specific errors
3
class
Test
{
4
public
:
5
Test
() :
ab_
(
false
{};
6
7
bool
ab
() {
8
return
ab_
;
9
}
10
private
:
11
bool
ab_
;
12
}