Rollup merge of #78172 - wesleywiser:close_77062, r=oli-obk

Add test case for #77062

Closes #77062
This commit is contained in:
Yuki Okushi 2020-10-22 09:45:42 +09:00 committed by GitHub
commit f5127de942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,5 @@
// build-pass
fn main() {
let _ = &[(); usize::MAX];
}