]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/proc-macro/span-api-tests.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.git] / src / test / ui / proc-macro / span-api-tests.rs
index 3667e14c9e058cc9df6dfd9a5c3dc50dad1c4287..5c0cbd77a8da7f810bc72ea40346ef02cb8b6f6a 100644 (file)
@@ -11,7 +11,9 @@
 
 extern crate span_api_tests;
 
-use span_api_tests::{reemit, assert_fake_source_file, assert_source_file, macro_stringify};
+// FIXME(69775): Investigate `assert_fake_source_file`.
+
+use span_api_tests::{reemit, assert_source_file, macro_stringify};
 
 macro_rules! say_hello {
     ($macname:ident) => ( $macname! { "Hello, world!" })
@@ -25,7 +27,7 @@ macro_rules! say_hello {
     assert_source_file! { "Hello, world!" }
 }
 
-say_hello_extern! { assert_fake_source_file }
+say_hello_extern! { assert_source_file }
 
 reemit! {
     assert_source_file! { "Hello, world!" }