Update expanded code sample in readme

This commit is contained in:
David Tolnay 2018-04-30 01:26:41 -07:00
parent fcc7256aae
commit f7ced95181
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -42,34 +42,38 @@ colorized. Install with `pip install Pygments`.
> #[prelude_import]
> use std::prelude::v1::*;
> #[macro_use]
> extern crate std as std;
> extern crate std;
> struct S;
> #[automatically_derived]
> #[allow(unused_qualifications)]
> impl ::std::fmt::Debug for S {
> fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
> fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
> match *self {
> S => {
> let mut builder = __arg_0.debug_tuple("S");
> builder.finish()
> let mut debug_trait_builder = f.debug_tuple("S");
> debug_trait_builder.finish()
> }
> }
> }
> }
>
> fn main() {
> ::io::_print(::std::fmt::Arguments::new_v1({
> static __STATIC_FMTSTR:
> &'static [&'static str]
> =
> &["", "\n"];
> __STATIC_FMTSTR
> },
> &match (&S,) {
> (__arg0,) =>
> [::std::fmt::ArgumentV1::new(__arg0,
> ::std::fmt::Debug::fmt)],
> }));
> ::io::_print(::std::fmt::Arguments::new_v1_formatted(
> &["", "\n"],
> &match (&S,) {
> (arg0,) => [::std::fmt::ArgumentV1::new(arg0, ::std::fmt::Debug::fmt)],
> },
> &[::std::fmt::rt::v1::Argument {
> position: ::std::fmt::rt::v1::Position::At(0usize),
> format: ::std::fmt::rt::v1::FormatSpec {
> fill: ' ',
> align: ::std::fmt::rt::v1::Alignment::Unknown,
> flags: 0u32,
> precision: ::std::fmt::rt::v1::Count::Implied,
> width: ::std::fmt::rt::v1::Count::Implied,
> },
> }],
> ));
> }
> ```