brewery
notashelf /
54892c3121d4fd98ef6b96dacdbe015923bc4394

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 */