Skip to content

Commit 2651f8c

Browse files
committed
Add regression tests from initial implementation review
1 parent 1726c1b commit 2651f8c

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// Test that you can list the more specific impl before the more general one.
12+
13+
#![feature(specialization)]
14+
15+
trait Foo {
16+
type Out;
17+
}
18+
19+
impl Foo for bool {
20+
type Out = ();
21+
}
22+
23+
impl<T> Foo for T {
24+
default type Out = bool;
25+
}
26+
27+
fn main() {}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![feature(specialization)]
12+
13+
// Regression test for ICE when combining specialized associated types and type
14+
// aliases
15+
16+
trait Id_ {
17+
type Out;
18+
}
19+
20+
type Id<T> = <T as Id_>::Out;
21+
22+
impl<T> Id_ for T {
23+
default type Out = T;
24+
}
25+
26+
fn main() {
27+
let x: Id<bool> = panic!();
28+
}

0 commit comments

Comments
 (0)