trying to get travis to pass

This commit is contained in:
Carl Fredrik Samson
2020-04-05 18:37:14 +02:00
parent 7a6f0592b0
commit 3904912799
5 changed files with 5 additions and 3 deletions

View File

@@ -2021,7 +2021,7 @@ we're soon finished.</p>
<p>But now, let's prevent this problem using <code>Pin</code>. We'll discuss
<code>Pin</code> more in the next chapter, but you'll get an introduction here by just
reading the comments.</p>
<pre><pre class="playpen"><code class="language-rust">#![feature(optin_builtin_traits)] // needed to implement `!Unpin`
<pre><pre class="playpen"><code class="language-rust">#![feature(optin_builtin_traits, negative_impls)] // needed to implement `!Unpin`
use std::pin::Pin;
pub fn main() {