Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
deb73f8b9334b7b065e3ce776827e69ccb4f52cd
/
.
/
test
/
SemaCXX
/
overloaded-builtin-operators-0x.cpp
blob: 6a5a162af679b8aee5c8cacbeb24005989fcf8d9 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -fshow-overloads=best -std=c++11 -verify %s
template
<
class
T
>
struct
X
{
operator
T
()
const
{
return
T
();}
};
void
test_char16t
(
X
<char16_t>
x
)
{
bool
b
=
x
==
char16_t
();
}