summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-1096.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/rustfmt/tests/target/issue-1096.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-1096.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-1096.rs71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-1096.rs b/src/tools/rustfmt/tests/target/issue-1096.rs
new file mode 100644
index 000000000..de78e7364
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-1096.rs
@@ -0,0 +1,71 @@
+struct StructA<T> /* comment 1 */ {
+ t: T,
+}
+
+struct StructB<T> /* comment 2 */;
+
+struct StructC /* comment 3 */;
+
+struct StructD /* comment 4 */ {
+ t: usize,
+}
+
+struct StructE<T>
+/* comment 5 */
+where
+ T: Clone,
+{
+ t: usize,
+}
+
+struct StructF
+/* comment 6 */
+where
+ T: Clone,
+{
+ t: usize,
+}
+
+struct StructG<T>
+/* comment 7 */
+// why a line comment??
+{
+ t: T,
+}
+
+struct StructH<T>
+/* comment 8 */
+// why a line comment??
+where
+ T: Clone,
+{
+ t: T,
+}
+
+enum EnumA<T> /* comment 8 */ {
+ Field(T),
+}
+
+enum EnumB /* comment 9 */ {
+ Field,
+}
+
+// Issue 2781
+struct StructX1<T>
+// where
+// T: Clone
+{
+ inner: String,
+}
+
+struct StructX2<
+ T,
+ U: Iterator<Item = String>,
+ V: Iterator<Item = String>,
+ W: Iterator<Item = String>,
+>
+// where
+// T: Clone
+{
+ inner: String,
+}