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