2014-11-05 21:06:04 -06:00
|
|
|
// 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 select between traits A and B. To do that, we must
|
|
|
|
// consider the `Sized` bound.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-05 20:33:58 -06:00
|
|
|
#![feature(core)]
|
|
|
|
|
2014-11-05 21:06:04 -06:00
|
|
|
trait A {
|
|
|
|
fn foo(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
trait B {
|
|
|
|
fn foo(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Sized> A for *const T {
|
|
|
|
fn foo(self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> B for *const [T] {
|
|
|
|
fn foo(self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-25 19:06:52 -05:00
|
|
|
let x: [isize; 4] = [1,2,3,4];
|
|
|
|
let xptr = x.as_slice() as *const [isize];
|
2014-11-05 21:06:04 -06:00
|
|
|
xptr.foo();
|
|
|
|
}
|