summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-ctypes-73249-2.rs
blob: 691047c8a405b56551985c1b26f21aa99f6efbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![feature(type_alias_impl_trait)]
#![deny(improper_ctypes)]

pub trait Baz {}

impl Baz for () {}

type Qux = impl Baz;

fn assign() -> Qux {}

pub trait Foo {
    type Assoc: 'static;
}

impl Foo for () {
    type Assoc = Qux;
}

#[repr(transparent)]
pub struct A<T: Foo> {
    x: &'static <T as Foo>::Assoc,
}

extern "C" {
    pub fn lint_me() -> A<()>; //~ ERROR: uses type `Qux`
}

fn main() {}