brintos

brintos / llvm-project-archived public Read only

0
0
Text · 242 B · bf54389 Raw
13 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++11 -verify %s 2// expected-no-diagnostics3 4template <class T>5struct X6{7   operator T() const {return T();}8};9 10void test_char16t(X<char16_t> x) {11   bool b = x == char16_t();12}13