blob: b096d99f01d58826d2a7c3f8c04711095a2592f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#
# This Cargo.toml file is used by the simple-trybuild module.
# When adding a new file, please name the [[bin]] name to match the file
# it is used to produce an error message
#
[package]
name = "macros-tests"
version = "0.0.0"
edition = "2018"
publish = false
[dependencies.macros]
path = "../../"
default-features = false
[[bin]]
name = "comma-sep-rs"
path = "comma-sep.rs"
[[bin]]
name = "double-commas-rs"
path = "double-commas.rs"
[[bin]]
name = "only-arrow-rs"
path = "only-arrow.rs"
[[bin]]
name = "only-comma-rs"
path = "only-comma.rs"
[[bin]]
name = "single-argument-rs"
path = "single-argument.rs"
[[bin]]
name = "triple-arguments-rs"
path = "triple-arguments.rs"
[[bin]]
name = "two-arrows-rs"
path = "two-arrows.rs"
[[bin]]
name = "leading-comma-rs"
path = "leading-comma.rs"
[[bin]]
name = "no-comma-rs"
path = "no-comma.rs"
[[bin]]
name = "missing-argument-rs"
path = "missing-argument.rs"
|