Skip to content

Commit

Permalink
Rollup merge of rust-lang#40433 - mattico:test-issue-29595, r=estebank
Browse files Browse the repository at this point in the history
Add test for issue rust-lang#29595

Closes rust-lang#29595

Couldn't get this to run locally, all the compile-fail tests are ignored... let's see what Travis says.
  • Loading branch information
frewsxcv committed Mar 17, 2017
2 parents a91ecdb + 5e49f79 commit c7c533f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test/ui/span/issue-29595.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright 2012 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.

#![feature(associated_consts)]

trait Tr {
const C: Self;
}

fn main() {
let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
}
10 changes: 10 additions & 0 deletions src/test/ui/span/issue-29595.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
error[E0277]: the trait bound `u8: Tr` is not satisfied
--> $DIR/issue-29595.rs:18:17
|
18 | let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
| ^^^^^ the trait `Tr` is not implemented for `u8`
|
= note: required by `Tr::C`

error: aborting due to previous error

0 comments on commit c7c533f

Please sign in to comment.