rust/tests/ui/svh/auxiliary/svh-utb.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
330 B
Rust
Raw Normal View History

2020-12-28 11:15:16 -06:00
//! "svh-uta-trait.rs" is checking that we detect a
//! change from `use foo::TraitB` to use `foo::TraitB` in the hash
//! (SVH) computation (#14132), since that will affect method
//! resolution.
//!
//! This is the downstream crate.
#![crate_name = "utb"]
extern crate uta;
pub fn foo() { assert_eq!(uta::foo::<()>(0), 3); }