about summary refs log tree commit diff
path: root/tests/rustdoc-js/impl-trait-inlining.rs
blob: a6ca0dcbd8dddf345119e0a216c63896fe377532 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_name="foo"]

pub struct TyCtxt;
pub struct DefId;
pub struct Symbol;

impl TyCtxt {
    pub fn has_attr(self, _did: impl Into<DefId>, _attr: Symbol) -> bool {
        unimplemented!();
    }
}