gccrs icon indicating copy to clipboard operation
gccrs copied to clipboard

Unused check for template function

Open sakupan102 opened this issue 4 months ago • 0 comments

Summary

The current unused variable pass does not check variables inside the template function.

Reproducer

I tried this code:

#[lang = "sized"]
pub trait Sized {}

fn test<T> (a: usize) -> () {
}

sakupan102 avatar Aug 21 '25 06:08 sakupan102