This file contains hidden or 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
pebble.rs/src/pebble/mod.rs:72:41: 72:49 error: the trait `pebble::WindowWidget` is not implemented for the type `Box<pebble::WindowWidget>` [E0277] | |
pebble.rs/src/pebble/mod.rs:72 let ret: &'a mut WindowWidget = &mut *br; | |
^~~~~~~~ | |
pebble.rs/src/pebble/mod.rs:72:41: 72:49 help: run `rustc --explain E0277` to see a detailed explanation | |
pebble.rs/src/pebble/mod.rs:72:41: 72:49 note: required for the cast to the object type `pebble::WindowWidget + 'a` |
This file contains hidden or 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
000012a8 <panicking::panic::h0d11e9a0132dcd5bDXL>: | |
12a8: e92d 41f0 stmdb sp!, {r4, r5, r6, r7, r8, lr} | |
12ac: af03 add r7, sp, #12 | |
12ae: b08e sub sp, #56 ; 0x38 | |
12b0: e890 0066 ldmia.w r0, {r1, r2, r5, r6} | |
12b4: 6904 ldr r4, [r0, #16] | |
12b6: e9cd 1206 strd r1, r2, [sp, #24] | |
12ba: 2000 movs r0, #0 | |
12bc: 9000 str r0, [sp, #0] | |
12be: f10d 0820 add.w r8, sp, #32 |
This file contains hidden or 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
>>> import struct | |
>>> struct.pack('<II', 0x6c6c6162, 0x73) | |
'balls\x00\x00\x00' |
This file contains hidden or 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
#[cold] #[inline(never)] | |
pub fn panic_fmt(fmt: fmt::Arguments, file_line: &(&'static str, u32)) -> ! { | |
#[allow(improper_ctypes)] | |
extern { | |
#[lang = "panic_fmt"] | |
#[unwind] | |
fn panic_impl(fmt: fmt::Arguments, file: &'static str, line: u32) -> !; | |
} | |
let (file, line) = *file_line; |
This file contains hidden or 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
00001c50 <_ZN6pebble5usart26UsartInnerDebug.fmt..Write9write_str20h2ee4dcecc5128b1fkkaE>: | |
1c50: b580 push {r7, lr} | |
1c52: b082 sub sp, #8 | |
1c54: e9cd 1200 strd r1, r2, [sp] | |
1c58: 4905 ldr r1, [pc, #20] ; (1c70 <_ZN6pebble5usart26UsartInnerDebug.fmt..Write9write_str20h2ee4dcecc5128b1fkkaE+0x20>) | |
1c5a: 2001 movs r0, #1 | |
1c5c: 2200 movs r2, #0 | |
1c5e: be00 bkpt 0x0000 | |
1c60: 4479 add r1, pc | |
1c62: 460b mov r3, r1 |
This file contains hidden or 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
[19:02:19] call_internal.c:36> syscall failure! 0x20017d28..0x20017d38 is not in app space. |
This file contains hidden or 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
i Restricted(16428393593367279165, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(5133876443216202316, IsEven) | |
i Restricted(13158432752299169445, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(2561328562429524786, IsEven) | |
i Restricted(5139937991088483465, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(5851492089227383774, IsEven) | |
i Restricted(10595345915241378450, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(9986452650662125524, IsEven) | |
i Restricted(9570001038510778950, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(17831426894584421638, IsEven) | |
i Restricted(6277108411207375020, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(17334383204570606446, IsEven) | |
i Restricted(3270633612514467885, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(16502206915245592698, IsEven) | |
i Restricted(8248196848858969980, (IsDivisibleByThree && IsDivisibleByFive)) j Restricted(6157399896823680680, IsEven) | |
i Restricted(12849156525658844820, (IsDivisibleByThree && IsDivisi |
This file contains hidden or 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
use std::io; | |
use std::io::BufRead; | |
fn do_the_work() -> io::Result<()> { | |
let stdin = io::stdin(); | |
for line in stdin.lock().lines() { | |
let line = try!(line); | |
let splut: Result<Vec<i32>, _> = line.split(" ").map(|s| s.parse()).take(3).collect(); | |
match splut { |
This file contains hidden or 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
#![feature(unsize, associated_consts, zero_one, core_intrinsics)] | |
extern crate rand; | |
use rand::{Rand, Rng}; | |
use std::boxed::Box; | |
use std::{fmt, num, ops}; | |
use std::marker::{PhantomData, Unsize}; | |
This file contains hidden or 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
tests/quickcheck.rs:126:20: 126:21 error: the type parameter `R` is not constrained by the impl trait, self type, or predicates [E0207] | |
tests/quickcheck.rs:126 impl<T: Arbitrary, R> Arbitrary for T where R: Default + Restriction<T> { |