diff options
| author | sinkuu <sinkuupump@gmail.com> | 2016-09-20 14:01:35 +0900 |
|---|---|---|
| committer | sinkuu <sinkuupump@gmail.com> | 2016-09-20 14:06:28 +0900 |
| commit | 2dfa96bc9aaf02bcf69999e52ce4a229638504aa (patch) | |
| tree | 85a4fd19680bbd8dc0a182a10aa66e9d4d7aac68 /tests/source/tuple.rs | |
| parent | 3ff7e8345716ebff936c27d7e597c978fa1d0677 (diff) | |
Fix #775
rewrite_tuple referring config.max_width where given width should be used
Diffstat (limited to 'tests/source/tuple.rs')
| -rw-r--r-- | tests/source/tuple.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/source/tuple.rs b/tests/source/tuple.rs index b28e83d2f08..d47777734bb 100644 --- a/tests/source/tuple.rs +++ b/tests/source/tuple.rs @@ -32,3 +32,13 @@ fn issue550() { self.visitor.visit_volume(self.level.sector_id(sector), (floor_y, if is_sky_flat(ceil_tex) {from_wad_height(self.height_range.1)} else {ceil_y})); } + +fn issue775() { + if indent { + let a = mk_object(&[("a".to_string(), Boolean(true)), + ("b".to_string(), + Array(vec![mk_object(&[("c".to_string(), + String("\x0c\r".to_string()))]), + mk_object(&[("d".to_string(), String("".to_string()))])]))]); + } +} |
