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
/
cxx-conversion.cpp
blob
83c29b8b11fc0aa9fd9c921cc74327990712fb7f
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
template
<
typename T
>
class
C1
{
10
long
a
;
11
operator
long
()
const
{
return
a
; }
12
};