Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
traits
/
traits-default-method-macro.rs
blob: 2b50ee9b42210951e8ac08f3008b88fc1dd42091 [
file
] [
log
] [
blame
]
// run-pass
trait
Foo
{
fn
bar
(&
self
)
->
String
{
format
!(
"test"
)
}
}
enum
Baz
{
Quux
}
impl
Foo
for
Baz
{
}
pub
fn
main
()
{
let
q
=
Baz
::
Quux
;
assert_eq
!(
q
.
bar
(),
"test"
.
to_string
());
}