Skip to content

Commit

Permalink
Fix function order in an msvc debuginfo test
Browse files Browse the repository at this point in the history
The function names with const generic parameters are printed in a
different order.
  • Loading branch information
lqd committed Apr 5, 2023
1 parent 4e235a7 commit 46a3d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/debuginfo/function-names.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 46a3d28

Please sign in to comment.