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
[flang][OpenMP] Use range-for to iterate over SymbolSourceMap, NFC
[llvm-project.git]
/
clang
/
test
/
Import
/
inherited-ctor-init-expr
/
Inputs
/
A.cpp
blob
27134333242ffd9ca9f82030c7293c2c77ce19d5
1
class
A
{
2
public
:
3
A
(
int
a
) :
a
(
a
) {}
4
int
a
;
5
};
6
class
B
:
public
A
{
7
using
A
::
A
;
8
};
9
class
C
:
public
B
{
10
C
() :
B
(
1
) {}
11
};