]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-11577.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / issue-11577.rs
1 // pretty-expanded FIXME #23616
2
3  // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 // Destructuring struct variants would ICE where regular structs wouldn't
14
15 enum Foo {
16     VBar { num: int }
17 }
18
19 struct SBar { num: int }
20
21 pub fn main() {
22     let vbar = Foo::VBar { num: 1 };
23     let Foo::VBar { num } = vbar;
24     assert_eq!(num, 1);
25
26     let sbar = SBar { num: 2 };
27     let SBar { num } = sbar;
28     assert_eq!(num, 2);
29 }