about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRémy Rakic <remy.rakic+github@gmail.com>2023-04-04 17:41:55 +0000
committerRémy Rakic <remy.rakic+github@gmail.com>2023-04-05 15:59:29 +0000
commit46a3d28e8840f8f7e400e661fc6c544697ad50a7 (patch)
tree0bf9f741a882bf8062affd55ac4363b2cbe2eb4a
parent4e235a7fa94867f1184a04c3befb9ddd1f0a9281 (diff)
downloadrust-46a3d28e8840f8f7e400e661fc6c544697ad50a7.tar.gz
rust-46a3d28e8840f8f7e400e661fc6c544697ad50a7.zip
Fix function order in an msvc debuginfo test
The function names with const generic parameters are printed in a
different order.
-rw-r--r--tests/debuginfo/function-names.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/debuginfo/function-names.rs b/tests/debuginfo/function-names.rs
index ca42d1e351f..d9aa03fee62 100644
--- a/tests/debuginfo/function-names.rs
+++ b/tests/debuginfo/function-names.rs
@@ -76,9 +76,9 @@
 // Const generic parameter
 // cdb-command:x a!function_names::const_generic_fn*
 // cdb-check:[...] a!function_names::const_generic_fn_bool<false> (void)
+// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$ad91263f6d2dd96e> (void)
 // cdb-check:[...] a!function_names::const_generic_fn_unsigned_int<14> (void)
 // cdb-check:[...] a!function_names::const_generic_fn_signed_int<-7> (void)
-// cdb-check:[...] a!function_names::const_generic_fn_non_int<CONST$ad91263f6d2dd96e> (void)
 
 #![allow(unused_variables)]
 #![feature(omit_gdb_pretty_printer_section)]