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