-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Open
Labels
A-debuginfoArea: Debugging information in compiled programs (DWARF, PDB, etc.)Area: Debugging information in compiled programs (DWARF, PDB, etc.)C-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Description
I tried to debug wth lldb this code:
use std::collections::HashMap;
#[derive(Debug)]
enum En<'a> {
None,
Bar(&'a Bar<'a>),
}
#[derive(Debug)]
struct Bar<'a> {
next: En<'a>,
}
fn main() {
let mut all_objects = HashMap::new();
let bar: Bar = Bar {
next: En::None,
};
all_objects.insert(1, bar);
let b1 = all_objects.get(&1).unwrap();
println!("b1={:?}", b1); //line 22
println!("end");
}
When try to set breakpoint to line 22 and print b1:
$ lldb target/debug/test
(lldb) target create "target/debug/test"
Current executable set to 'target/debug/test' (x86_64).
(lldb) b 22
Breakpoint 1: 2 locations.
(lldb) r
Process 11600 launched: '/home/chabapok/RustProjects/2/test1/target/debug/test' (x86_64)
Process 11600 stopped
* thread #1, name = 'test', stop reason = breakpoint 1.1
frame #0: 0x000055555556501f test`test::main at main.rs:22
19 };
20 all_objects.insert(1, bar);
21 let b1 = all_objects.get(&1).unwrap();
-> 22 println!("b1={:?}", b1); //line 22
23 println!("end");
24 }
(lldb) p b1
error: test DWARF DIE at 0x0000007c (class En) has a member variable 0x00000082 (RUST$ENCODED$ENUM$0$None) whose type is a forward declaration, not a complete definition.
Please file a bug against the compiler and include the preprocessed output for /home/chabapok/RustProjects/2/test1/./src/main.rs
Stack dump:
0. HandleCommand(command = "p b1")
1. <eof> parser at end of file
2. Parse:41:1: Generating code for declaration '$__lldb_expr'
Segmentation fault (core dumped)
ubuntu 14.04, x64, rustc 1.18.0-nightly
llvm,clang,lldb builded from master branch
arve0, kornelski and dovahcrow
Metadata
Metadata
Assignees
Labels
A-debuginfoArea: Debugging information in compiled programs (DWARF, PDB, etc.)Area: Debugging information in compiled programs (DWARF, PDB, etc.)C-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.