1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 10:11:47 +02:00

build with make

This commit is contained in:
Ben Burdette 2020-03-30 09:14:29 -06:00
parent 759f39800b
commit 35c7bab09a
4 changed files with 24 additions and 3 deletions

View file

@ -12,7 +12,7 @@ int main()
{
using namespace nix;
ErrorInfo::programName = optional("errorTest");
ErrorInfo::programName = optional("error-test");
/*
ColumnRange columnRange;
@ -59,7 +59,9 @@ int main()
.columnRange(13,7)
.linesOfCode(nullopt
,"this is the problem line of code"
,nullopt));
,nullopt)
.hint(hintfmt("this hint has %1% templated %2%!!") % "yellow" % "values")
);
printErrorInfo(MkNixError()
.name("error name")