blob: 32f1995290644390bc2aac3c928dde45ce5f417a [file] [log] [blame]
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001// RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++0x -verify %s
2
3template <class T>
4struct X
5{
6 operator T() const {return T();}
7};
8
9void test_char16t(X<char16_t> x) {
10 bool b = x == char16_t();
11}