aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-09-04 10:25:23 +0100
committerAleksey Kladov <[email protected]>2018-09-04 10:25:23 +0100
commite44a6bcc8208f9d906febf9278120b75a6af67f9 (patch)
tree0b6a9e8d5c9527d9bd1ed266213d591ea957623c /crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs
parent3a017aaa52fc41316b5dd2cd90b5171ca869697a (diff)
for types in bounds
Diffstat (limited to 'crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs')
-rw-r--r--crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs b/crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs
new file mode 100644
index 000000000..588170fbe
--- /dev/null
+++ b/crates/libsyntax2/tests/data/parser/ok/0032_where_for.rs
@@ -0,0 +1,4 @@
1fn test_serialization<SER>()
2where
3 SER: Serialize + for<'de> Deserialize<'de> + PartialEq + std::fmt::Debug,
4{}