summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/rustdoc-extern-default-method.rs
blob: 12934238a8e92f5fccc4c8e38d843832c243aaf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_type="lib"]

pub trait Trait {
    fn provided(&self) {}
}

pub struct Struct;

impl Trait for Struct {
    fn provided(&self) {}
}