diff options
author | metamuffin <metamuffin@disroot.org> | 2022-08-30 17:13:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-08-30 17:13:23 +0200 |
commit | 5598051d92377dcfc776620aad10eec854a40663 (patch) | |
tree | 089aad643f2ed86e75b55d02306bc5322a4559df /content/articles/2022-08-29-blog-test.md | |
parent | 802efbca25cb92d8567761361b6513fd57e05578 (diff) | |
download | metamuffin-blog-5598051d92377dcfc776620aad10eec854a40663.tar metamuffin-blog-5598051d92377dcfc776620aad10eec854a40663.tar.bz2 metamuffin-blog-5598051d92377dcfc776620aad10eec854a40663.tar.zst |
extend grammar
Diffstat (limited to 'content/articles/2022-08-29-blog-test.md')
-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 |