brewery
notashelf /
bfbcef9c284c54772e80b5a7f33efe9f9bcf75fa

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/fixtures/block_comments.nixNix24 lines230 B
1
# Test block comments /* */
2
/*
3
This is a block comment
4
*/
5
let
6
  x = 42;
7
  /*
8
  inline block comment
9
  */
10
  /*
11
  Multi-line
12
  block
13
  comment
14
  */
15
  y = 100;
16
in
17
  /*
18
  Comment before expression
19
  */
20
  x + y
21
/*
22
Trailing comment
23
*/
24