mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
20 lines
353 B
Rust
20 lines
353 B
Rust
//@ check-pass
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
trait SomeTrait {
|
|
fn map(&self) {}
|
|
}
|
|
|
|
impl<T> SomeTrait for Option<T> {}
|
|
|
|
trait SomeAlias = SomeTrait;
|
|
|
|
fn main() {
|
|
let x = Some(123);
|
|
// This should resolve to the trait impl for Option
|
|
Option::map(x, |z| z);
|
|
// This should resolve to the trait impl for SomeTrait
|
|
SomeTrait::map(&x);
|
|
}
|