index
:
rustc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
ui
/
imports
/
issue-53140.rs
blob: 7b4cc176806aafe96fe554cf97ed579a28a552f0 (
plain
)
1
2
3
4
5
6
7
8
9
10
11
// check-pass
mod
m
{
pub
struct
S
(
u8
);
use
S
as
Z
;
}
use
m
::
*
;
fn
main
()
{}