about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-30535.rs
blob: a971ce12362ecdd5ee0b7797fbdfd71a91764a9d (plain)
1
2
3
4
5
6
7
8
9
//@ aux-build:issue-30535.rs

extern crate issue_30535 as foo;

fn bar(
    _: foo::Foo::FooV //~ ERROR expected type, found variant `foo::Foo::FooV`
) {}

fn main() {}