Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/main
/
.
/
bindgen-tests
/
tests
/
headers
/
issue-3027.hpp
blob: d9b87ee6e2870c81d82e0721e9377c675d87fa50 [
file
] [
log
] [
blame
] [
edit
]
// bindgen-flags: --enable-cxx-namespaces
namespace
regression
{
template
<
unsigned
N
>
class
A
{
char
c
[
N
];
};
class
C
{
A
<
3
>
a
;
};
}