Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
debuginfo
/
issue-7712.rs
blob: 11143f79161a83a7dd805af574343bdd397c53a6 [
file
] [
log
] [
blame
]
//@ compile-flags:-C debuginfo=1
pub
trait
TraitWithDefaultMethod
:
Sized
{
fn
method
(
self
)
{
()
}
}
struct
MyStruct
;
impl
TraitWithDefaultMethod
for
MyStruct
{
}
pub
fn
main
()
{
MyStruct
.
method
();
}