summaryrefslogtreecommitdiff
path: root/tests/run-make/issue-109934-lto-debuginfo/lib.rs
blob: c405928bd18241f61e0c72c7d8e75409c2fc9be4 (plain)
1
2
3
4
5
6
7
8
9
extern crate alloc;

#[cfg(test)]
mod tests {
    #[test]
    fn something_alloc() {
        assert_eq!(Vec::<u32>::new(), Vec::<u32>::new());
    }
}