@@ -139,7 +139,7 @@ STRUCT!{struct D3DVSHADERCAPS2_0 {Caps: u8,}}
139139
140140STRUCT!{#[cfg_attr(target_arch = "x86", repr(packed))] struct D3DCONTENTPROTECTIONCAPS {Caps : u8 ,}}
141141"# ,
142- expect ! [ [ r## "
142+ expect ! [ [ r#"
143143macro_rules! STRUCT {
144144 ($(#[$attrs:meta])* struct $name:ident {
145145 $($field:ident: $ftype:ty,)+
@@ -194,7 +194,7 @@ impl Clone for D3DCONTENTPROTECTIONCAPS {
194194 }
195195 }
196196}
197- "## ] ] ,
197+ "# ] ] ,
198198 ) ;
199199}
200200
@@ -214,7 +214,7 @@ macro_rules! int_base {
214214}
215215int_base!{Binary for isize as usize -> Binary}
216216"# ,
217- expect ! [ [ r## "
217+ expect ! [ [ r#"
218218macro_rules! int_base {
219219 ($Trait:ident for $T:ident as $U:ident -> $Radix:ident) => {
220220 #[stable(feature = "rust1", since = "1.0.0")]
@@ -230,7 +230,7 @@ macro_rules! int_base {
230230 Binary.fmt_int(*self as usize, f)
231231 }
232232}
233- "## ] ] ,
233+ "# ] ] ,
234234 ) ;
235235}
236236
@@ -318,7 +318,7 @@ impl_fn_for_zst ! {
318318}
319319
320320"# ,
321- expect ! [ [ r## "
321+ expect ! [ [ r#"
322322macro_rules! impl_fn_for_zst {
323323 {$( $( #[$attr: meta] )*
324324 struct $Name: ident impl$( <$( $lifetime : lifetime ),+> )? Fn =
@@ -410,7 +410,7 @@ impl FnOnce<(char, )> for CharEscapeDefault {
410410 }
411411}
412412
413- "## ] ] ,
413+ "# ] ] ,
414414 ) ;
415415}
416416
@@ -511,7 +511,7 @@ cfg_if! {
511511 @__apply cfg(all(not(any(not(any(target_os = "solaris", target_os = "illumos")))))),
512512}
513513"# ,
514- expect ! [ [ r## "
514+ expect ! [ [ r#"
515515macro_rules! cfg_if {
516516 ($(if #[cfg($($meta:meta),*)] { $($it:item)* } )else* else { $($it2:item)* })
517517 => {
@@ -534,7 +534,7 @@ __cfg_if_items! {
534534}
535535
536536
537- "## ] ] ,
537+ "# ] ] ,
538538 ) ;
539539}
540540
@@ -618,7 +618,7 @@ RIDL!{interface ID3D11Asynchronous(ID3D11AsynchronousVtbl): ID3D11DeviceChild(ID
618618 fn GetDataSize(&mut self) -> UINT
619619}}
620620"# ,
621- expect ! [ [ r## "
621+ expect ! [ [ r#"
622622#[macro_export]
623623macro_rules! RIDL {
624624 (interface $interface:ident ($vtbl:ident) : $pinterface:ident ($pvtbl:ident)
@@ -639,7 +639,7 @@ impl ID3D11Asynchronous {
639639 ((*self .lpVtbl).GetDataSize)(self )
640640 }
641641}
642- "## ] ] ,
642+ "# ] ] ,
643643 ) ;
644644}
645645
@@ -676,7 +676,7 @@ quick_error ! (
676676);
677677
678678"# ,
679- expect ! [ [ r## "
679+ expect ! [ [ r#"
680680macro_rules! quick_error {
681681 (SORT [enum $name:ident $( #[$meta:meta] )*]
682682 items [$($( #[$imeta:meta] )*
@@ -697,7 +697,7 @@ macro_rules! quick_error {
697697}
698698quick_error!(ENUMINITION[enum Wrapped#[derive(Debug)]]body[]queue[ = > One: UNIT[] = > Two: TUPLE[s: String]]);
699699
700- "## ] ] ,
700+ "# ] ] ,
701701 )
702702}
703703
@@ -746,7 +746,7 @@ delegate_impl ! {
746746 [G, &'a mut G, deref] pub trait Data: GraphBase {@section type type NodeWeight;}
747747}
748748"# ,
749- expect ! [ [ r## "
749+ expect ! [ [ r#"
750750macro_rules! delegate_impl {
751751 ([$self_type:ident, $self_wrap:ty, $self_map:ident]
752752 pub trait $name:ident $(: $sup:ident)* $(+ $more_sup:ident)* {
@@ -785,7 +785,7 @@ macro_rules! delegate_impl {
785785 }
786786}
787787impl <> Data for &'amut G where G: Data {}
788- "## ] ] ,
788+ "# ] ] ,
789789 ) ;
790790}
791791
@@ -959,14 +959,14 @@ macro_rules! with_std {
959959
960960with_std! {mod m;mod f;}
961961"# ,
962- expect ! [ [ r## "
962+ expect ! [ [ r#"
963963macro_rules! with_std {
964964 ($($i:item)*) => ($(#[cfg(feature = "std")]$i)*)
965965}
966966
967967#[cfg(feature = "std")] mod m;
968968#[cfg(feature = "std")] mod f;
969- "## ] ] ,
969+ "# ] ] ,
970970 )
971971}
972972
0 commit comments