`''${foo}` is handled correctly, but `''$FOO` is not. Simple example: `` let foo = '' hi ''$FOO ''; in { a = 3; } ``
''${foo}is handled correctly, but''$FOOis not. Simple example:``
let foo = ''
hi ''$FOO
'';
in
{
a = 3;
}
``