brewery
notashelf /
13a38f707b976a7a146bb2c23f0162b8f17c858b

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