mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
232 B
Rust
14 lines
232 B
Rust
pub(crate) struct Bar<T> {
|
|
foo: T,
|
|
|
|
trait T { //~ ERROR expected identifier, found keyword `trait`
|
|
fn foo(&self);
|
|
}
|
|
|
|
|
|
impl T for Bar<usize> {
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
fn main() {} //~ ERROR this file contains an unclosed delimiter
|