Skip to content

Commit

Permalink
auto merge of #18224 : nikomatsakis/rust/issue-17594, r=alexcrichton
Browse files Browse the repository at this point in the history
Add test for issue #17594

Fixes #17594
  • Loading branch information
bors committed Oct 22, 2014
2 parents 7d7e409 + 7b02185 commit 96991e9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/test/run-pass/multidispatch-conditional-impl-not-considered.rs
@@ -0,0 +1,33 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Test that we correctly ignore the blanket impl
// because (in this case) `T` does not impl `Clone`.
//
// Issue #17594.

use std::cell::RefCell;

trait Foo {
fn foo(&self) {}
}

impl<T> Foo for T where T: Clone {}

struct Bar;

impl Bar {
fn foo(&self) {}
}

fn main() {
let b = RefCell::new(Bar);
b.borrow().foo()
}

0 comments on commit 96991e9

Please sign in to comment.