mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
12 lines
61 B
Plaintext
12 lines
61 B
Plaintext
|
|
enum S {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
fn main() {
|
|
let v = S::A;
|
|
}
|
|
|
|
|