I have this constant defined: pub const WIDTH: usize = 15;
Now I would like to create an alias for a type which is the bit-length of WIDTH.
I believe I saw that somewhere as a @builtin function, but cannot find it anymore.
Something like this: pub const MyWidthType = @selectType(WIDTH)