Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/upstream/layouttests-ub
/
.
/
tests
/
headers
/
inline_namespace.hpp
blob: 2ccf8ab0e2c24493b08d93271bf32cb450991592 [
file
] [
log
] [
blame
] [
edit
]
// bindgen-flags: --enable-cxx-namespaces -- -std=c++11
namespace
foo
{
inline
namespace
bar
{
using
Ty
=
int
;
};
};
class
Bar
{
foo
::
Ty
baz
;
};