blob: 41255214ec6af9f9d2fd19e1ca97062d3264f5b3 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
struct Variant {
template <typename T> operator T();
};
Variant getValue();
void testVariant() {
bool ret1 = getValue() || getValue();
bool ret2 = getValue() && getValue();
bool ret3 = !getValue();
}
struct ExplicitVariant {
template <typename T> explicit operator T();
};
ExplicitVariant getExplicitValue();
void testExplicitVariant() {
bool ret1 = getExplicitValue() || getExplicitValue();
bool ret2 = getExplicitValue() && getExplicitValue();
bool ret3 = !getExplicitValue();
}
|