]> git.proxmox.com Git - rustc.git/blobdiff - src/test/codegen-units/non-generic-drop-glue.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / codegen-units / non-generic-drop-glue.rs
index a82e85b7a5315c3fb4d8b34d3d13f281ef295557..bd8b0c605aecf8b96a48a468c35acb04a57de1ff 100644 (file)
@@ -19,7 +19,7 @@ struct StructWithDrop {
 }
 
 impl Drop for StructWithDrop {
-    //~ TRANS_ITEM fn non_generic_drop_glue::StructWithDrop.Drop[0]::drop[0]
+    //~ TRANS_ITEM fn non_generic_drop_glue::{{impl}}[0]::drop[0]
     fn drop(&mut self) {}
 }
 
@@ -33,7 +33,7 @@ enum EnumWithDrop {
 }
 
 impl Drop for EnumWithDrop {
-    //~ TRANS_ITEM fn non_generic_drop_glue::EnumWithDrop.Drop[0]::drop[0]
+    //~ TRANS_ITEM fn non_generic_drop_glue::{{impl}}[1]::drop[0]
     fn drop(&mut self) {}
 }