Sign in
android
/
platform
/
external
/
google-fruit
/
251e883e3e52a6f706833803c9f3043dfb2c9583
/
.
/
configuration
/
bazel
/
clang_arbitrary_overload_resolution_bug.cpp
blob: 67b4317c81a834517e5d52d0327dcd103f4686d0 [
file
] [
log
] [
blame
]
template
<
typename
T
,
typename
U
>
struct
Pair
{};
struct
Map
:
public
Pair
<
int
,
float
>,
Pair
<
int
,
char
>
{};
template
<
typename
Value
>
Value
f
(
Pair
<
int
,
Value
>*)
{
return
Value
();
}
int
main
()
{
f
((
Map
*)
0
);
}