blob: bf543892e43db99d872c2ca1d602a8abe8193bac [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++11 -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00003
4template <class T>
5struct X
6{
7 operator T() const {return T();}
8};
9
10void test_char16t(X<char16_t> x) {
11 bool b = x == char16_t();
12}