aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0021_impl_item_list.rs
blob: f108514879dbbf18493b585432341e7c67deabcf (plain)
1
2
3
4
5
6
impl F {
    type A = i32;
    const B: i32 = 92;
    fn foo() {}
    fn bar(&self) {}
}