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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
InterfaceStubs
/
constructor-using-shadow.cpp
blob
6cc847024b539da6f8cc5d8ec40449a43e5aab41
1
// RUN: %clang_cc1 -o - -emit-interface-stubs %s | FileCheck %s
2
3
// CHECK: --- !ifs-v1
4
// CHECK-NEXT: IfsVersion: 3.0
5
// CHECK-NEXT: Target:
6
// CHECK-NEXT: Symbols:
7
// CHECK-NEXT: ...
8
9
// ConstructorUsingShadowDecl
10
struct
Base
{
Base
(
int
); };
11
struct
Derived
:
public
Base
{
using
Base
::
Base
; };