diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-05 09:13:28 +0100 |
|---|---|---|
| committer | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-11 09:32:08 +0000 |
| commit | cf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch) | |
| tree | 40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/mir-opt/basic_assignment.rs | |
| parent | ca855e6e42787ecd062d81d53336fe6788ef51a9 (diff) | |
| download | rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip | |
Move /src/test to /tests
Diffstat (limited to 'src/test/mir-opt/basic_assignment.rs')
| -rw-r--r-- | src/test/mir-opt/basic_assignment.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/mir-opt/basic_assignment.rs b/src/test/mir-opt/basic_assignment.rs deleted file mode 100644 index ac350271e9f..00000000000 --- a/src/test/mir-opt/basic_assignment.rs +++ /dev/null @@ -1,24 +0,0 @@ -// this tests move up progration, which is not yet implemented - -// EMIT_MIR basic_assignment.main.SimplifyCfg-initial.after.mir - -// Check codegen for assignments (`a = b`) where the left-hand-side is -// not yet initialized. Assignments tend to be absent in simple code, -// so subtle breakage in them can leave a quite hard-to-find trail of -// destruction. - -fn main() { - let nodrop_x = false; - let nodrop_y; - - // Since boolean does not require drop, this can be a simple - // assignment: - nodrop_y = nodrop_x; - - let drop_x: Option<Box<u32>> = None; - let drop_y; - - // Since the type of `drop_y` has drop, we generate a `replace` - // terminator: - drop_y = drop_x; -} |
