We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 912ab64 commit 7d0198dCopy full SHA for 7d0198d
src/test/compile-fail/no-send-res-ports.rs
@@ -20,7 +20,7 @@ fn main() {
20
_x: Port<()>,
21
}
22
23
- impl Drop for foo {
+ impl Drop for foo {
24
fn drop(&mut self) {}
25
26
src/test/run-pass/issue-2718.rs
@@ -165,7 +165,7 @@ pub mod pipes {
165
p: Option<*const packet<T>>,
166
167
168
- impl<T:Send> Drop for send_packet<T> {
+ impl<T:Send> Drop for send_packet<T> {
169
fn drop(&mut self) {
170
unsafe {
171
if self.p != None {
@@ -194,7 +194,7 @@ pub mod pipes {
194
195
196
197
- impl<T:Send> Drop for recv_packet<T> {
+ impl<T:Send> Drop for recv_packet<T> {
198
199
200
0 commit comments