brewery
notashelf /
8a093aa9e806dbdbe1adbcbe8e8214fbdd2cf7e2

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