blob: 0d53315839cebbd7b0d61383aba31c58163a8a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pub(crate) struct Bar<T> {
foo: T,
trait T { //~ ERROR expected identifier, found keyword `trait`
//~^ ERROR expected `:`, found `T`
fn foo(&self);
}
impl T for Bar<usize> {
fn foo(&self) {}
}
fn main() {} //~ ERROR this file contains an unclosed delimiter
|