summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-ctypes-73249-2.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /tests/ui/lint/lint-ctypes-73249-2.rs
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/lint/lint-ctypes-73249-2.rs')
-rw-r--r--tests/ui/lint/lint-ctypes-73249-2.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ui/lint/lint-ctypes-73249-2.rs b/tests/ui/lint/lint-ctypes-73249-2.rs
index 691047c8a..f30377d6c 100644
--- a/tests/ui/lint/lint-ctypes-73249-2.rs
+++ b/tests/ui/lint/lint-ctypes-73249-2.rs
@@ -1,7 +1,7 @@
#![feature(type_alias_impl_trait)]
#![deny(improper_ctypes)]
-pub trait Baz {}
+trait Baz {}
impl Baz for () {}
@@ -9,7 +9,7 @@ type Qux = impl Baz;
fn assign() -> Qux {}
-pub trait Foo {
+trait Foo {
type Assoc: 'static;
}
@@ -18,12 +18,12 @@ impl Foo for () {
}
#[repr(transparent)]
-pub struct A<T: Foo> {
+struct A<T: Foo> {
x: &'static <T as Foo>::Assoc,
}
extern "C" {
- pub fn lint_me() -> A<()>; //~ ERROR: uses type `Qux`
+ fn lint_me() -> A<()>; //~ ERROR: uses type `Qux`
}
fn main() {}