Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/upstream/layouttests-ub
/
.
/
tests
/
headers
/
constify-module-enums-simple-nonamespace.hpp
blob: 5b15f5c8087deb1abc3bbc1df59cc8fcb93bb9c0 [
file
] [
log
] [
blame
] [
edit
]
// bindgen-flags: --constified-enum-module one::Foo
namespace
one
{
enum
class
Foo
{
Variant1
,
Variant2
,
};
}
class
Bar
{
one
::
Foo
baz1
;
one
::
Foo
*
baz2
;
};