Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 7.80 KB | None | 0 0
  1. #![feature(prelude_import)]
  2. #![no_std]
  3. #[prelude_import]
  4. use std::prelude::v1::*;
  5. #[macro_use]
  6. extern crate std as std;
  7. fn main() {
  8.     ::io::_print(::std::fmt::Arguments::new_v1_formatted({
  9.                                                              static __STATIC_FMTSTR:
  10.                                                                     &'static [&'static str]
  11.                                                                     =
  12.                                                                  &["", " ",
  13.                                                                    " ", "\n"];
  14.                                                              __STATIC_FMTSTR
  15.                                                          },
  16.                                                          &match (&"the lazy dog",
  17.                                                                  &"the quick brown fox",
  18.                                                                  &"jumps over")
  19.                                                               {
  20.                                                               (__arg0, __arg1,
  21.                                                                __arg2) =>
  22.                                                               [::std::fmt::ArgumentV1::new(__arg0,
  23.                                                                                            ::std::fmt::Display::fmt),
  24.                                                                ::std::fmt::ArgumentV1::new(__arg1,
  25.                                                                                            ::std::fmt::Display::fmt),
  26.                                                                ::std::fmt::ArgumentV1::new(__arg2,
  27.                                                                                            ::std::fmt::Display::fmt)],
  28.                                                           },
  29.                                                          {
  30.                                                              static __STATIC_FMTARGS:
  31.                                                                     &'static [::std::fmt::rt::v1::Argument]
  32.                                                                    =
  33.                                                                 &[::std::fmt::rt::v1::Argument{position:
  34.                                                                                                    ::std::fmt::rt::v1::Position::At(1usize),
  35.                                                                                                format:
  36.                                                                                                    ::std::fmt::rt::v1::FormatSpec{fill:
  37.                                                                                                                                       ' ',
  38.                                                                                                                                   align:
  39.                                                                                                                                       ::std::fmt::rt::v1::Alignment::Unknown,
  40.                                                                                                                                   flags:
  41.                                                                                                                                       0u32,
  42.                                                                                                                                   precision:
  43.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,
  44.                                                                                                                                   width:
  45.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,},},
  46.                                                                   ::std::fmt::rt::v1::Argument{position:
  47.                                                                                                    ::std::fmt::rt::v1::Position::At(2usize),
  48.                                                                                                format:
  49.                                                                                                    ::std::fmt::rt::v1::FormatSpec{fill:
  50.                                                                                                                                       ' ',
  51.                                                                                                                                   align:
  52.                                                                                                                                       ::std::fmt::rt::v1::Alignment::Unknown,
  53.                                                                                                                                   flags:
  54.                                                                                                                                       0u32,
  55.                                                                                                                                   precision:
  56.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,
  57.                                                                                                                                   width:
  58.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,},},
  59.                                                                   ::std::fmt::rt::v1::Argument{position:
  60.                                                                                                    ::std::fmt::rt::v1::Position::At(0usize),
  61.                                                                                                format:
  62.                                                                                                    ::std::fmt::rt::v1::FormatSpec{fill:
  63.                                                                                                                                       ' ',
  64.                                                                                                                                   align:
  65.                                                                                                                                       ::std::fmt::rt::v1::Alignment::Unknown,
  66.                                                                                                                                   flags:
  67.                                                                                                                                       0u32,
  68.                                                                                                                                   precision:
  69.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,
  70.                                                                                                                                   width:
  71.                                                                                                                                       ::std::fmt::rt::v1::Count::Implied,},}];
  72.                                                             __STATIC_FMTARGS
  73.                                                         }));
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement