diff options
| author | Marcus Klaas <mail@marcusklaas.nl> | 2015-11-13 14:53:34 +0100 |
|---|---|---|
| committer | Marcus Klaas <mail@marcusklaas.nl> | 2015-11-13 14:53:34 +0100 |
| commit | c93c771e71ca96a94ab7d13b37103cb57be22df5 (patch) | |
| tree | 9fe02a135947d2df33ea0688d3ab4403ffbc179a /tests/source | |
| parent | 686ec52b504c7c7a991a98053d6518cd005ede80 (diff) | |
Fix span issue with generic method calls
Diffstat (limited to 'tests/source')
| -rw-r--r-- | tests/source/chains.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/source/chains.rs b/tests/source/chains.rs index bf1ed31afe7..e7d9783a51c 100644 --- a/tests/source/chains.rs +++ b/tests/source/chains.rs @@ -106,3 +106,9 @@ fn is_replaced_content() -> bool { constellat.send(ConstellationMsg::ViewportConstrained( self.id, constraints)).unwrap(); } + +fn issue587() { + a.b::<()>(c); + + std::mem::transmute(dl.symbol::<()>("init").unwrap()) +} |
