@@ -764,7 +764,7 @@ mod windows_subsystem {
764764 //~^ NOTE this attribute does not have an `!`, which means it is applied to this module
765765 mod inner { #![ windows_subsystem="windows" ] }
766766 //~^ WARN the `#![windows_subsystem]` attribute can only be used at the crate root
767-
767+
768768 #[ windows_subsystem = "windows" ] fn f ( ) { }
769769 //~^ WARN crate-level attribute should be an inner attribute
770770 //~| NOTE this attribute does not have an `!`, which means it is applied to this function
@@ -838,7 +838,7 @@ mod feature {
838838//~^ NOTE this attribute does not have an `!`, which means it is applied to this module
839839 mod inner { #![ feature( x0600) ] }
840840 //~^ WARN the `#![feature]` attribute can only be used at the crate root
841-
841+
842842 #[ feature( x0600) ] fn f ( ) { }
843843 //~^ WARN crate-level attribute should be an inner attribute
844844 //~| NOTE this attribute does not have an `!`, which means it is applied to this function
@@ -863,7 +863,7 @@ mod no_main_1 {
863863 //~^ NOTE: this attribute does not have an `!`, which means it is applied to this module
864864 mod inner { #![ no_main] }
865865 //~^ WARN the `#![no_main]` attribute can only be used at the crate root
866-
866+
867867 #[ no_main] fn f ( ) { }
868868 //~^ WARN crate-level attribute should be an inner attribute
869869 //~| NOTE this attribute does not have an `!`, which means it is applied to this function
@@ -887,7 +887,7 @@ mod no_builtins {
887887 //~^ NOTE: this attribute does not have an `!`, which means it is applied to this module
888888 mod inner { #![ no_builtins] }
889889 //~^ WARN the `#![no_builtins]` attribute can only be used at the crate root
890-
890+
891891 #[ no_builtins] fn f ( ) { }
892892 //~^ WARN crate-level attribute should be an inner attribute
893893 //~| NOTE this attribute does not have an `!`, which means it is applied to this function
0 commit comments