summaryrefslogtreecommitdiffstats
path: root/src/test/ui/svh/auxiliary/svh-a-change-type-arg.rs
blob: 3fe102245f74c2270f1d9c1b3ab7573c3aa373a5 (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
//! The `svh-a-*.rs` files are all deviations from the base file
//! svh-a-base.rs with some difference (usually in `fn foo`) that
//! should not affect the strict version hash (SVH) computation
//! (#14132).

#![crate_name = "a"]

macro_rules! three {
    () => { 3 }
}

pub trait U {}
pub trait V {}
impl U for () {}
impl V for () {}

static A_CONSTANT : isize = 2;

pub fn foo<T:U>(_: i32) -> isize {
    3
}

pub fn an_unused_name() -> isize {
    4
}