rust/src/test/run-pass-fulldeps
Niko Matsakis 9e3d0b002a librustc: Remove the fallback to int from typechecking.
This breaks a fair amount of code. The typical patterns are:

* `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`;

* `println!("{}", 3)`: change to `println!("{}", 3i)`;

* `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`.

RFC #30. Closes #6023.

[breaking-change]
2014-06-24 17:18:48 -07:00
..
issue-13560.rs Enable use of syntax extensions when cross compiling. 2014-04-23 20:33:54 +01:00
lint-plugin-cmdline.rs Test lint plugins 2014-06-24 11:36:28 -07:00
lint-plugin.rs Test lint plugins 2014-06-24 11:36:28 -07:00
macro-crate-outlive-expansion-phase.rs Convert tests to use #[plugin_registrar] 2014-06-09 14:29:30 -07:00
macro-crate.rs Use phase(plugin) in tests 2014-06-09 14:29:30 -07:00
phase-syntax-link-does-resolve.rs Use phase(plugin) in tests 2014-06-09 14:29:30 -07:00
qquote.rs std: Remove String's to_owned 2014-05-27 11:11:15 -07:00
quote-tokens.rs rustc: Obsolete the @ syntax entirely 2014-06-14 10:45:37 -07:00
quote-unused-sp-no-warning.rs compiletest: Test --pretty expanded 2014-05-13 17:24:08 -07:00
syntax-extension-fourcc.rs Use phase(plugin) in tests 2014-06-09 14:29:30 -07:00
syntax-extension-hexfloat.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
syntax-extension-with-dll-deps.rs Use phase(plugin) in tests 2014-06-09 14:29:30 -07:00