mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
aa107a9754
* 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
15 lines
300 B
Plaintext
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
|
|
|