2013-02-23 00:15:11 -06:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2013-01-03 17:26:41 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-01-03 16:55:46 -06:00
|
|
|
struct HTMLImageData {
|
2013-02-22 18:08:16 -06:00
|
|
|
image: Option<~str>
|
2013-01-03 16:55:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ElementData {
|
|
|
|
kind: ~ElementKind
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ElementKind {
|
|
|
|
HTMLImageElement(HTMLImageData)
|
|
|
|
}
|
|
|
|
|
|
|
|
enum NodeKind {
|
|
|
|
Element(ElementData)
|
|
|
|
}
|
|
|
|
|
2013-02-23 00:15:11 -06:00
|
|
|
struct NodeData {
|
2013-01-03 16:55:46 -06:00
|
|
|
kind: ~NodeKind
|
2013-02-23 00:15:11 -06:00
|
|
|
}
|
2013-01-03 16:55:46 -06:00
|
|
|
|
|
|
|
fn main() {
|
2013-02-22 18:08:16 -06:00
|
|
|
let mut id = HTMLImageData { image: None };
|
2013-01-03 16:55:46 -06:00
|
|
|
let ed = ElementData { kind: ~HTMLImageElement(id) };
|
2013-02-23 00:15:11 -06:00
|
|
|
let n = NodeData {kind : ~Element(ed)};
|
|
|
|
// n.b. span could be better
|
2013-01-03 16:55:46 -06:00
|
|
|
match n.kind {
|
2013-02-23 00:15:11 -06:00
|
|
|
~Element(ed) => match ed.kind { //~ ERROR non-exhaustive patterns
|
|
|
|
~HTMLImageElement(ref d) if d.image.is_some() => { true }
|
2013-01-03 16:55:46 -06:00
|
|
|
},
|
2013-09-29 22:06:21 -05:00
|
|
|
_ => fail2!("WAT") //~ ERROR unreachable pattern
|
2013-01-03 16:55:46 -06:00
|
|
|
};
|
|
|
|
}
|