mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 15:02:19 +00:00
12 lines
168 B
Rust
12 lines
168 B
Rust
trait T {
|
|
fn foo(&self);
|
|
|
|
pub(crate) struct Bar<T>();
|
|
|
|
impl T for Bar<usize> {
|
|
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
fn main() {} //~ ERROR this file contains an unclosed delimiter
|