about summary refs log tree commit diff
path: root/tests/ui/issues/issue-5997-struct.rs
diff options
context:
space:
mode:
authorMarek 'seqre' Grzelak <git@seqre.dev>2024-01-27 22:59:40 -0600
committerMarek 'seqre' Grzelak <git@seqre.dev>2024-01-29 17:31:56 -0600
commited5562987969ab063367418d6847ac4a224b51e7 (patch)
tree140fbae7fd71abc04648fbc7af20f40725375442 /tests/ui/issues/issue-5997-struct.rs
parent8a0b5ae1996721b38ca84af0b81a36e83d0d0c2c (diff)
downloadrust-ed5562987969ab063367418d6847ac4a224b51e7.tar.gz
rust-ed5562987969ab063367418d6847ac4a224b51e7.zip
Move multiple UI issue tests to subdirectories
Issue tests numbered 1920, 3668, 5997, 23302, 32122, 40510, 57741, 71676, and 76077 were moved to relevant better-named subdirectories. ISSUES_ENTRY_LIMIT was adjusted to match new number of files and FIXME note was expanded.
Diffstat (limited to 'tests/ui/issues/issue-5997-struct.rs')
-rw-r--r--tests/ui/issues/issue-5997-struct.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/ui/issues/issue-5997-struct.rs b/tests/ui/issues/issue-5997-struct.rs
deleted file mode 100644
index 19d994b0dfb..00000000000
--- a/tests/ui/issues/issue-5997-struct.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-fn f<T>() -> bool {
-    struct S(T); //~ ERROR can't use generic parameters from outer item
-
-    true
-}
-
-fn main() {
-    let b = f::<isize>();
-    assert!(b);
-}