brewery
notashelf /
2a005574d3d6791783fb70fd460753557d3e3df2

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/block_comments.nixNix12 lines217 B
1
# Test block comments /* */
2
/* This is a block comment */
3
let
4
  x = 42; /* inline block comment */
5
  /* Multi-line
6
     block
7
     comment */
8
  y = 100;
9
in
10
/* Comment before expression */
11
x + y
12
/* Trailing comment */