mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 16:21:28 +00:00
14 lines
179 B
Rust
14 lines
179 B
Rust
pub(crate) struct Bar<T> {
|
|
foo: T,
|
|
|
|
trait T {
|
|
fn foo(&self);
|
|
}
|
|
|
|
|
|
impl T for Bar<usize> {
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
fn main() {} //~ ERROR this file contains an unclosed delimiter
|