diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/articles/2022-08-29-blog-test.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/content/articles/2022-08-29-blog-test.md b/content/articles/2022-08-29-blog-test.md index 2b65444..cdbeab0 100644 --- a/content/articles/2022-08-29-blog-test.md +++ b/content/articles/2022-08-29-blog-test.md @@ -11,10 +11,15 @@ _italic_ **bold** `code` [Link](https://metamuffin.org/) Look at this code here. ```rs -fn main() { 1 + 1 } +struct Impossible<T> { + something: HashMap<usize, T>, + itself: Impossible, +} + pub async fn useless(s: Box<dyn Write>) -> impl Future<usize> { - todo!() + todo!() // this panics } +fn main() { 1 + "blub" } ``` As you can see, its pointless i.e. no points |