diff options
| author | Oneirical <manchot@videotron.ca> | 2025-07-13 16:56:31 -0400 |
|---|---|---|
| committer | Oneirical <manchot@videotron.ca> | 2025-08-17 13:01:02 -0400 |
| commit | 75e0263af9ca27eac2c922538582deec764d1e7b (patch) | |
| tree | bc8584c15f51966d5ddee98a6782785d5c158fe0 /tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs | |
| parent | 2e2642e641a941f0a1400c7827fd89aa86fef8f4 (diff) | |
| download | rust-75e0263af9ca27eac2c922538582deec764d1e7b.tar.gz rust-75e0263af9ca27eac2c922538582deec764d1e7b.zip | |
Rehome tests/ui/issues/ tests [5/?]
Diffstat (limited to 'tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs')
| -rw-r--r-- | tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs b/tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs new file mode 100644 index 00000000000..1a67caf021c --- /dev/null +++ b/tests/ui/pattern/ref-in-function-parameter-patterns-8860.rs @@ -0,0 +1,52 @@ +// https://github.com/rust-lang/rust/issues/8860 +//@ run-pass +// FIXME(static_mut_refs): this could use an atomic +#![allow(static_mut_refs)] +#![allow(dead_code)] + +static mut DROP: isize = 0; +static mut DROP_S: isize = 0; +static mut DROP_T: isize = 0; + +struct S; +impl Drop for S { + fn drop(&mut self) { + unsafe { + DROP_S += 1; + DROP += 1; + } + } +} +fn f(ref _s: S) {} + +struct T { i: isize } +impl Drop for T { + fn drop(&mut self) { + unsafe { + DROP_T += 1; + DROP += 1; + } + } +} +fn g(ref _t: T) {} + +fn do_test() { + let s = S; + f(s); + unsafe { + assert_eq!(1, DROP); + assert_eq!(1, DROP_S); + } + let t = T { i: 1 }; + g(t); + unsafe { assert_eq!(1, DROP_T); } +} + +fn main() { + do_test(); + unsafe { + assert_eq!(2, DROP); + assert_eq!(1, DROP_S); + assert_eq!(1, DROP_T); + } +} |
