2019-10-25 18:30:02 -07:00
|
|
|
trait T {
|
|
|
|
|
fn foo(&self);
|
|
|
|
|
|
2019-11-07 11:26:36 +01:00
|
|
|
pub(crate) struct Bar<T>();
|
2019-10-25 18:30:02 -07:00
|
|
|
|
|
|
|
|
impl T for Bar<usize> {
|
2023-02-28 07:55:19 +00:00
|
|
|
|
2019-10-25 18:30:02 -07:00
|
|
|
fn foo(&self) {}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 08:40:15 -05:00
|
|
|
fn main() {} //~ ERROR this file contains an unclosed delimiter
|