2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:issue-30535.rs
|
2016-01-22 19:23:51 +00:00
|
|
|
|
|
|
|
extern crate issue_30535 as foo;
|
|
|
|
|
|
|
|
fn bar(
|
2016-11-30 22:35:25 +00:00
|
|
|
_: foo::Foo::FooV //~ ERROR expected type, found variant `foo::Foo::FooV`
|
2016-01-22 19:23:51 +00:00
|
|
|
) {}
|
|
|
|
|
|
|
|
fn main() {}
|