Skip to content

Commit

Permalink
add regression test for rust-lang#91489
Browse files Browse the repository at this point in the history
  • Loading branch information
SNCPlay42 authored and fee1-dead committed Dec 12, 2021
1 parent 5166f68 commit c5f8788
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions src/test/ui/issues/issue-91489.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// check-pass

// regression test for #91489

use std::borrow::Borrow;
use std::borrow::Cow;

pub struct VariantType {}
pub struct VariantTy {}

impl Borrow<VariantTy> for VariantType {
fn borrow(&self) -> &VariantTy {
unimplemented!()
}
}

impl ToOwned for VariantTy {
type Owned = VariantType;
fn to_owned(&self) -> VariantType {
unimplemented!()
}
}

impl VariantTy {
pub fn as_str(&self) -> () {}
}

// the presence of this was causing all attempts to call `as_str` on
// `Cow<'_, VariantTy>, including in itself, to not find the method
static _TYP: () = {
let _ = || {
// should be found
Cow::Borrowed(&VariantTy {}).as_str();
};
};

fn main() {
// should be found
Cow::Borrowed(&VariantTy {}).as_str()
}

0 comments on commit c5f8788

Please sign in to comment.