blob: 32f1995290644390bc2aac3c928dde45ce5f417a [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++0x -verify %s
template <class T>
struct X
{
operator T() const {return T();}
};
void test_char16t(X<char16_t> x) {
bool b = x == char16_t();
}