blob: c59bd87065f25a142b8c6cd69456301082e71628 [file] [log] [blame]
// run-pass
#![allow(non_snake_case)]
// aux-build:issue-14421.rs
// pretty-expanded FIXME #23616
extern crate issue_14421 as bug_lib;
use bug_lib::B;
use bug_lib::make;
pub fn main() {
let mut an_A: B = make();
an_A.foo();
}