Idris2/tests/idris2/error023/expected
Daniel Kröni aa107a9754
Implemented %noinline (#2027)
* Implemented %noinline

* Removed trailing spaces.

* Added missing case in Reify FnOpt

* Added error message when both %inline and %noinline are set.

* Added test.

* Changed from perror to error
2021-10-19 15:22:36 +01:00

15 lines
300 B
Plaintext

1/1: Building Error1 (Error1.idr)
Error: %inline and %noinline are mutually exclusive
Error1:1:1--2:17
1 | %inline %noinline
2 | foo : Int -> Int
1/1: Building Error2 (Error2.idr)
Error: %noinline and %inline are mutually exclusive
Error2:1:1--2:17
1 | %noinline %inline
2 | foo : Int -> Int