This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate b; | |
extern crate c; | |
fn main() { | |
println!("{} {}", b::identity(), c::identity()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![crate_type="dylib"] | |
#[no_mangle] | |
pub fn foo(x: std::fmt::Arguments) -> i32 { | |
println!("{:?}", x); | |
3 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![allow(unused_must_use)] | |
//extern crate debug; | |
extern crate syntax; | |
extern crate rustc; | |
extern crate rustc_driver; | |
extern crate rustc_typeck; | |
extern crate rustc_resolve; | |
//extern crate collections; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(e)geofft@cactuar:~/src/ssl/cryptography$ git diff | |
diff --git a/tests/hazmat/primitives/test_asym_utils.py b/tests/hazmat/primitives/test_asym_utils.py | |
index c3fbedf..e4fd4f2 100644 | |
--- a/tests/hazmat/primitives/test_asym_utils.py | |
+++ b/tests/hazmat/primitives/test_asym_utils.py | |
@@ -68,3 +68,11 @@ def test_decode_rfc6979_invalid_asn1(): | |
# This is the BER "end-of-contents octets," which pyasn1 is | |
# wrongly willing to return from top-level DER decoding. | |
decode_rfc6979_signature(b"\x00\x00") | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rusti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sys/socket.h> | |
#include <sys/types.h> | |
#include <netinet/ip.h> | |
#include <signal.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void | |
handler(int signal) |
NewerOlder