From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/unique/unique-kinds.rs | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/test/ui/unique/unique-kinds.rs (limited to 'src/test/ui/unique/unique-kinds.rs') diff --git a/src/test/ui/unique/unique-kinds.rs b/src/test/ui/unique/unique-kinds.rs new file mode 100644 index 000000000..f02d0b507 --- /dev/null +++ b/src/test/ui/unique/unique-kinds.rs @@ -0,0 +1,64 @@ +// run-pass + +use std::cmp::PartialEq; +use std::fmt::Debug; + +fn sendable() { + + fn f(i: T, j: T) { + assert_eq!(i, j); + } + + fn g(i: T, j: T) { + assert!(i != j); + } + + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(100); + f(i, j); + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(101); + g(i, j); +} + +fn copyable() { + + fn f(i: T, j: T) { + assert_eq!(i, j); + } + + fn g(i: T, j: T) { + assert!(i != j); + } + + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(100); + f(i, j); + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(101); + g(i, j); +} + +fn noncopyable() { + + fn f(i: T, j: T) { + assert_eq!(i, j); + } + + fn g(i: T, j: T) { + assert!(i != j); + } + + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(100); + f(i, j); + let i: Box<_> = Box::new(100); + let j: Box<_> = Box::new(101); + g(i, j); +} + +pub fn main() { + sendable(); + copyable(); + noncopyable(); +} -- cgit v1.2.3