Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/main
/
.
/
bindgen-tests
/
tests
/
headers
/
using.hpp
blob: ba07b9c8a45a33c66ce0dba8db9e2919add198d9 [
file
] [
log
] [
blame
] [
edit
]
// bindgen-flags: -- -std=c++11
template
<
typename
T
>
class
Point
{
T x
;
T y
;
};
typedef
Point
<int>
IntPoint2D
;
using
IntVec2D
=
Point
<int>
;