rust/tests/target/enum.rs

54 lines
899 B
Rust
Raw Normal View History

2015-05-29 12:41:26 +02:00
// Enums test
#[atrr]
pub enum Test {
A,
2015-06-23 15:58:58 +02:00
B(u32, A /* comment */, SomeType),
2015-05-29 12:41:26 +02:00
/// Doc comment
C,
}
pub enum Foo<'a, Y: Baz>
where X: Whatever
{
A,
}
enum EmtpyWithComment {
// Some comment
}
// C-style enum
enum Bar {
A = 1,
#[someAttr(test)]
B = 2, // comment
C,
}
enum LongVariants {
2015-09-27 08:39:58 +02:00
First(LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOONG, // comment
2015-05-29 12:41:26 +02:00
VARIANT),
// This is the second variant
Second,
}
2015-06-23 15:58:58 +02:00
enum StructLikeVariants {
Normal(u32, String),
StructLike {
x: i32, // Test comment
// Pre-comment
#[Attr50]
y: SomeType, // Aanother Comment
},
SL {
a: A,
},
2015-06-23 15:58:58 +02:00
}
enum X {
CreateWebGLPaintTask(Size2D<i32>,
GLContextAttributes,
IpcSender<Result<(IpcSender<CanvasMsg>, usize), String>>),
}