@@ -139,7 +139,7 @@ STRUCT!{struct D3DVSHADERCAPS2_0 {Caps: u8,}}
139
139
140
140
STRUCT!{#[cfg_attr(target_arch = "x86", repr(packed))] struct D3DCONTENTPROTECTIONCAPS {Caps : u8 ,}}
141
141
"# ,
142
- expect ! [ [ r## "
142
+ expect ! [ [ r#"
143
143
macro_rules! STRUCT {
144
144
($(#[$attrs:meta])* struct $name:ident {
145
145
$($field:ident: $ftype:ty,)+
@@ -194,7 +194,7 @@ impl Clone for D3DCONTENTPROTECTIONCAPS {
194
194
}
195
195
}
196
196
}
197
- "## ] ] ,
197
+ "# ] ] ,
198
198
) ;
199
199
}
200
200
@@ -214,7 +214,7 @@ macro_rules! int_base {
214
214
}
215
215
int_base!{Binary for isize as usize -> Binary}
216
216
"# ,
217
- expect ! [ [ r## "
217
+ expect ! [ [ r#"
218
218
macro_rules! int_base {
219
219
($Trait:ident for $T:ident as $U:ident -> $Radix:ident) => {
220
220
#[stable(feature = "rust1", since = "1.0.0")]
@@ -230,7 +230,7 @@ macro_rules! int_base {
230
230
Binary.fmt_int(*self as usize, f)
231
231
}
232
232
}
233
- "## ] ] ,
233
+ "# ] ] ,
234
234
) ;
235
235
}
236
236
@@ -318,7 +318,7 @@ impl_fn_for_zst ! {
318
318
}
319
319
320
320
"# ,
321
- expect ! [ [ r## "
321
+ expect ! [ [ r#"
322
322
macro_rules! impl_fn_for_zst {
323
323
{$( $( #[$attr: meta] )*
324
324
struct $Name: ident impl$( <$( $lifetime : lifetime ),+> )? Fn =
@@ -410,7 +410,7 @@ impl FnOnce<(char, )> for CharEscapeDefault {
410
410
}
411
411
}
412
412
413
- "## ] ] ,
413
+ "# ] ] ,
414
414
) ;
415
415
}
416
416
@@ -511,7 +511,7 @@ cfg_if! {
511
511
@__apply cfg(all(not(any(not(any(target_os = "solaris", target_os = "illumos")))))),
512
512
}
513
513
"# ,
514
- expect ! [ [ r## "
514
+ expect ! [ [ r#"
515
515
macro_rules! cfg_if {
516
516
($(if #[cfg($($meta:meta),*)] { $($it:item)* } )else* else { $($it2:item)* })
517
517
=> {
@@ -534,7 +534,7 @@ __cfg_if_items! {
534
534
}
535
535
536
536
537
- "## ] ] ,
537
+ "# ] ] ,
538
538
) ;
539
539
}
540
540
@@ -618,7 +618,7 @@ RIDL!{interface ID3D11Asynchronous(ID3D11AsynchronousVtbl): ID3D11DeviceChild(ID
618
618
fn GetDataSize(&mut self) -> UINT
619
619
}}
620
620
"# ,
621
- expect ! [ [ r## "
621
+ expect ! [ [ r#"
622
622
#[macro_export]
623
623
macro_rules! RIDL {
624
624
(interface $interface:ident ($vtbl:ident) : $pinterface:ident ($pvtbl:ident)
@@ -639,7 +639,7 @@ impl ID3D11Asynchronous {
639
639
((*self .lpVtbl).GetDataSize)(self )
640
640
}
641
641
}
642
- "## ] ] ,
642
+ "# ] ] ,
643
643
) ;
644
644
}
645
645
@@ -676,7 +676,7 @@ quick_error ! (
676
676
);
677
677
678
678
"# ,
679
- expect ! [ [ r## "
679
+ expect ! [ [ r#"
680
680
macro_rules! quick_error {
681
681
(SORT [enum $name:ident $( #[$meta:meta] )*]
682
682
items [$($( #[$imeta:meta] )*
@@ -697,7 +697,7 @@ macro_rules! quick_error {
697
697
}
698
698
quick_error!(ENUMINITION[enum Wrapped#[derive(Debug)]]body[]queue[ = > One: UNIT[] = > Two: TUPLE[s: String]]);
699
699
700
- "## ] ] ,
700
+ "# ] ] ,
701
701
)
702
702
}
703
703
@@ -746,7 +746,7 @@ delegate_impl ! {
746
746
[G, &'a mut G, deref] pub trait Data: GraphBase {@section type type NodeWeight;}
747
747
}
748
748
"# ,
749
- expect ! [ [ r## "
749
+ expect ! [ [ r#"
750
750
macro_rules! delegate_impl {
751
751
([$self_type:ident, $self_wrap:ty, $self_map:ident]
752
752
pub trait $name:ident $(: $sup:ident)* $(+ $more_sup:ident)* {
@@ -785,7 +785,7 @@ macro_rules! delegate_impl {
785
785
}
786
786
}
787
787
impl <> Data for &'amut G where G: Data {}
788
- "## ] ] ,
788
+ "# ] ] ,
789
789
) ;
790
790
}
791
791
@@ -959,14 +959,14 @@ macro_rules! with_std {
959
959
960
960
with_std! {mod m;mod f;}
961
961
"# ,
962
- expect ! [ [ r## "
962
+ expect ! [ [ r#"
963
963
macro_rules! with_std {
964
964
($($i:item)*) => ($(#[cfg(feature = "std")]$i)*)
965
965
}
966
966
967
967
#[cfg(feature = "std")] mod m;
968
968
#[cfg(feature = "std")] mod f;
969
- "## ] ] ,
969
+ "# ] ] ,
970
970
)
971
971
}
972
972
0 commit comments