summaryrefslogtreecommitdiffstats
path: root/tests/ui/svh/auxiliary/svh-a-change-lit.rs
blob: c76f2c99236d62da611b329f980f4bd7b2dab371 (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>(_: isize) -> isize {
    0
}

pub fn an_unused_name() -> isize {
    4
}