Rust: run codegen

This commit is contained in:
Arthur Baars
2025-05-29 18:58:01 +02:00
parent 0dd0f9a22a
commit f0db47b571
431 changed files with 3484 additions and 1258 deletions

View File

@@ -1,6 +1,9 @@
// generated by codegen, do not edit
fn test_variant() -> () {
// A Variant. For example:
todo!()
// A variant in an enum declaration.
//
// For example:
enum E { A, B(i32), C { x: i32 } }
// ^ ^^^^^^ ^^^^^^^^^^^^
}