Closed
Description
foo.rs:
use std::collections::BTreeSet;
fn main() {
let _: BTreeSet<()> = BTreeSet::new();
}
Output:
> rustc --version
rustc 1.5.0-nightly (cff041170 2015-09-17)
> rustc foo.rs
> valgrind ./foo
==15717== Memcheck, a memory error detector
==15717== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==15717== Using Valgrind-3.10.1 and LibVEX; rerun with -h for copyright info
==15717== Command: ./foo
==15717==
==15717== Invalid read of size 1
==15717== at 0x11D791: je_mallocx (in /home/andrew/foo)
==15717== by 0x10D1DF: heap::allocate::hef78f640aa355f8bPda (in /home/andrew/foo)
==15717== by 0x10CA6E: btree::node::Node$LT$K$C$$u20$V$GT$::new_leaf::h84712443304502014 (in /home/andrew/foo)
==15717== by 0x10CA06: btree::node::Node$LT$K$C$$u20$V$GT$::make_leaf_root::h5239528127300894605 (in /home/andrew/foo)
==15717== by 0x10C9B4: btree::map::BTreeMap$LT$K$C$$u20$V$GT$::with_b::h8455151666287840927 (in /home/andrew/foo)
==15717== by 0x10C953: btree::map::BTreeMap$LT$K$C$$u20$V$GT$::new::h4727297226639213121 (in /home/andrew/foo)
==15717== by 0x10C92C: btree::set::BTreeSet$LT$T$GT$::new::h6672219473307838625 (in /home/andrew/foo)
==15717== by 0x10C90D: main::h42b03f129f44e909faa (in /home/andrew/foo)
==15717== by 0x114D64: sys_common::unwind::try::try_fn::h14601444602367533931 (in /home/andrew/foo)
==15717== by 0x111D78: __rust_try (in /home/andrew/foo)
==15717== by 0x1149D8: rt::lang_start::h7135051af8990a95Zkx (in /home/andrew/foo)
==15717== by 0x10E799: main (in /home/andrew/foo)
==15717== Address 0x200000000013feff is not stack'd, malloc'd or (recently) free'd
==15717==
==15717==
==15717== Process terminating with default action of signal 11 (SIGSEGV)
==15717== General Protection Fault
==15717== at 0x11D791: je_mallocx (in /home/andrew/foo)
==15717== by 0x10D1DF: heap::allocate::hef78f640aa355f8bPda (in /home/andrew/foo)
==15717== by 0x10CA6E: btree::node::Node$LT$K$C$$u20$V$GT$::new_leaf::h84712443304502014 (in /home/andrew/foo)
==15717== by 0x10CA06: btree::node::Node$LT$K$C$$u20$V$GT$::make_leaf_root::h5239528127300894605 (in /home/andrew/foo)
==15717== by 0x10C9B4: btree::map::BTreeMap$LT$K$C$$u20$V$GT$::with_b::h8455151666287840927 (in /home/andrew/foo)
==15717== by 0x10C953: btree::map::BTreeMap$LT$K$C$$u20$V$GT$::new::h4727297226639213121 (in /home/andrew/foo)
==15717== by 0x10C92C: btree::set::BTreeSet$LT$T$GT$::new::h6672219473307838625 (in /home/andrew/foo)
==15717== by 0x10C90D: main::h42b03f129f44e909faa (in /home/andrew/foo)
==15717== by 0x114D64: sys_common::unwind::try::try_fn::h14601444602367533931 (in /home/andrew/foo)
==15717== by 0x111D78: __rust_try (in /home/andrew/foo)
==15717== by 0x1149D8: rt::lang_start::h7135051af8990a95Zkx (in /home/andrew/foo)
==15717== by 0x10E799: main (in /home/andrew/foo)
==15717==
==15717== HEAP SUMMARY:
==15717== in use at exit: 32 bytes in 1 blocks
==15717== total heap usage: 5 allocs, 4 frees, 976 bytes allocated
==15717==
==15717== LEAK SUMMARY:
==15717== definitely lost: 0 bytes in 0 blocks
==15717== indirectly lost: 0 bytes in 0 blocks
==15717== possibly lost: 0 bytes in 0 blocks
==15717== still reachable: 32 bytes in 1 blocks
==15717== suppressed: 0 bytes in 0 blocks
==15717== Rerun with --leak-check=full to see details of leaked memory
==15717==
==15717== For counts of detected and suppressed errors, rerun with: -v
==15717== ERROR SUMMARY: 2 errors from 1 contexts (suppressed: 0 from 0)
Segmentation fault (core dumped)