summaryrefslogtreecommitdiffstats
path: root/tests/debuginfo/auxiliary/cross_crate_spans.rs
blob: efe5e419542e89b92d97a2308e2f90c2fd1d34f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![crate_type = "rlib"]

#![allow(unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]
#![omit_gdb_pretty_printer_section]

// no-prefer-dynamic
// compile-flags:-g

pub fn generic_function<T: Clone>(val: T) -> (T, T) {
    let result = (val.clone(), val.clone());
    let a_variable: u32 = 123456789;
    let another_variable: f64 = 123456789.5;
    zzz();
    result
}

#[inline(never)]
fn zzz() {()}