File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
branches/snap-stage3/src/libstd Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 124eb2119c78651cfaaa7a046a101fa2e20f83ca
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 58e7598c2e1265a0f1292ed6f93bfb29abb93504
4
+ refs/heads/snap-stage3: f68aa459ea981b08a41fa9650696414de64eabd4
5
5
refs/heads/try: ac820906c0e53eab79a98ee64f7231f57c3887b4
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -375,3 +375,13 @@ impl<A:IterBytes> ToBytes for A {
375
375
}
376
376
}
377
377
}
378
+
379
+ #[ cfg( test) ]
380
+ mod test {
381
+ use super :: * ;
382
+ // just test to see if it compiles:
383
+ #[ test] fn iterbytes_compiles ( ) {
384
+ takes_iterbytes ( ( 3 , 4 , 5 , false ) ) ;
385
+ }
386
+ fn takes_iterbytes < T : IterBytes > ( x : T ) { }
387
+ }
You can’t perform that action at this time.
0 commit comments