about summary refs log tree commit diff
path: root/src/test/debuginfo/lexical-scope-in-parameterless-closure.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-02-18Fix remaining bench/debuginfo tests (and a few stragglers)Niko Matsakis-1/+1
2015-02-10Enable test/debuginfo on androidEunji Jeong-1/+0
2015-02-04remove all kind annotations from closuresJorge Aparicio-1/+1
2015-01-30Remove all `i` suffixesTobias Bucher-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
sed -i 's/ range(\([^,]*\), *\([^()]*\))\./ (\1\.\.\2)\./g' **/*.rs
2015-01-20rustc: Remove deprecated flagsAlex Crichton-1/+1
This commit removes a number of deprecated flags from the compiler: * opt-level => -C opt-level * debuginfo => -C debuginfo * print-crate-name => --print crate-name * print-file-name => --print file-names * no-trans => -Z no-trans * no-analysis => -Z no-analysis * parse-only => -Z parse-only * dep-info => --emit dep-info This commit also moves the --pretty flag behind `-Z unstable-options` as the pretty printer will likely not be stable for 1.0 cc #19051
2015-01-05fix debuginfo testsJorge Aparicio-1/+1
2014-10-22debuginfo: Gate all LLDB debuginfo tests on a minimum LLDB version being ↵Michael Woerister-0/+3
available
2014-06-29librustc: Remove the fallback to `int` for integers and `f64` forPatrick Walton-1/+1
floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change]
2014-05-07debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldbMichael Woerister-0/+21