-
-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
114 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
use nalgebra_macros::stack; | ||
|
||
fn main() { | ||
stack![]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
error: `stack` macro cannot be used without any arguments | ||
--> tests/trybuild/stack_empty.rs:4:5 | ||
| | ||
4 | stack![]; | ||
| ^^^^^^^^ | ||
| | ||
= note: this error originates in the macro `stack` (in Nightly builds, run with -Z macro-backtrace for more info) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
use nalgebra_macros::{matrix, stack}; | ||
|
||
fn main() { | ||
let m = matrix![1, 2; 3, 4]; | ||
stack![0, m]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
error: At least one element in each column must be an expression of type `Matrix` | ||
--> tests/trybuild/stack_empty_col.rs:5:5 | ||
| | ||
5 | stack![0, m]; | ||
| ^^^^^^^^^^^^ | ||
| | ||
= note: this error originates in the macro `stack` (in Nightly builds, run with -Z macro-backtrace for more info) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
use nalgebra_macros::{matrix, stack}; | ||
|
||
fn main() { | ||
let m = matrix![1, 2; 3, 4]; | ||
stack![0; m]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
error: At least one element in each row must be an expression of type `Matrix` | ||
--> tests/trybuild/stack_empty_row.rs:5:5 | ||
| | ||
5 | stack![0; m]; | ||
| ^^^^^^^^^^^^ | ||
| | ||
= note: this error originates in the macro `stack` (in Nightly builds, run with -Z macro-backtrace for more info) |