]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dropck/issue-38868.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / dropck / issue-38868.rs
1 pub struct List<T> {
2     head: T,
3 }
4
5 impl Drop for List<i32> { //~ ERROR E0366
6     fn drop(&mut self) {
7         panic!()
8     }
9 }
10
11 fn main() {
12     List { head: 0 };
13 }