OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConvertsTo
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp
19
struct
ConvertsTo
{
49
Base&& base4 =
ConvertsTo
<Base&&>();
50
Base&& base5 =
ConvertsTo
<Derived&&>();
51
int && int1 =
ConvertsTo
<int&&>();
54
Base&& base6 =
ConvertsTo
<Base>();
55
Base&& base7 =
ConvertsTo
<Derived>();
58
int (&&function1)(int) =
ConvertsTo
<int(&)(int)>();
64
int &&int2 =
ConvertsTo
<int&>(); // expected-error{{no viable conversion from '
ConvertsTo
<int &>' to 'int'}}
65
int &&int3 =
ConvertsTo
<float&>(); // expected-error{{no viable conversion from 'ConvertsTo<float &>' to 'int'}
[
all
...]
/external/clang/test/SemaTemplate/
instantiate-method.cpp
67
struct
ConvertsTo
{
71
void test_converts_to(
ConvertsTo
<int> ci,
ConvertsTo
<int *> cip) {
Completed in 26 milliseconds