summaryrefslogtreecommitdiffstats
path: root/test/CXX/over/over.built/p23.cpp
blob: c65b10804b27493f0a446b5998a6303638abc3f0 (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++0x -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();
}