]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/source/reorder-impl-items.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[rustc.git] / src / tools / rustfmt / tests / source / reorder-impl-items.rs
CommitLineData
f20569fa
XL
1// rustfmt-reorder_impl_items: true
2
3// The ordering of the following impl items should be idempotent.
4impl<'a> Command<'a> {
5 pub fn send_to(&self, w: &mut io::Write) -> io::Result<()> {
6 match self {
7 &Command::Data(ref c) => c.send_to(w),
8 &Command::Vrfy(ref c) => c.send_to(w),
9 }
10 }
11
12 pub fn parse(arg: &[u8]) -> Result<Command, ParseError> {
13 nom_to_result(command(arg))
14 }
15}