Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
2e7bbcfdbb487100f58d682a39dda3583fbde517
/
.
/
bindgen-tests
/
tests
/
headers
/
template-param-usage-15.hpp
blob: bac7ada77b5f03c481a503e9b1050e748f302b8b [
file
]
// bindgen-flags: -- -std=c++14
template
<
typename
T
>
class
BaseUsesT
{
T
*
usage
;
};
template
<
typename
U
>
class
CrtpIgnoresU
:
public
BaseUsesT
<
CrtpIgnoresU
<
U
>>
{
int
y
;
};