diff options
| author | Philip Munksgaard <pmunksgaard@gmail.com> | 2015-04-16 15:58:43 +0200 |
|---|---|---|
| committer | Philip Munksgaard <pmunksgaard@gmail.com> | 2015-04-16 16:00:47 +0200 |
| commit | 4436ade8ad62619dadd6033f116a831179b238d9 (patch) | |
| tree | c3cbcad01f7a81794d02f677f6be626f23eeb568 | |
| parent | ac2b6f6066adeb79629604a92ecb871c642d045d (diff) | |
| download | rust-4436ade8ad62619dadd6033f116a831179b238d9.tar.gz rust-4436ade8ad62619dadd6033f116a831179b238d9.zip | |
Add Debug to MethodCallee
This fixes #24497
| -rw-r--r-- | src/librustc/middle/ty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/middle/ty.rs b/src/librustc/middle/ty.rs index 1e817890440..eab87dc846d 100644 --- a/src/librustc/middle/ty.rs +++ b/src/librustc/middle/ty.rs @@ -437,7 +437,7 @@ pub struct MethodObject<'tcx> { pub vtable_index: usize, } -#[derive(Clone)] +#[derive(Clone, Debug)] pub struct MethodCallee<'tcx> { pub origin: MethodOrigin<'tcx>, pub ty: Ty<'tcx>, |
