about summary refs log tree commit diff
path: root/src/rustllvm/RustWrapper.cpp
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2015-01-08 11:39:45 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2015-01-08 12:27:28 +1100
commit92cd8ea96ad2a1da51863b7f089baec41ed10ce9 (patch)
tree26c6f3525c1481d5e8cd54c8c2a336ca67a1ba9b /src/rustllvm/RustWrapper.cpp
parent9f1ead8fadc56bad30dc74f5cc50d78af4fbc972 (diff)
downloadrust-92cd8ea96ad2a1da51863b7f089baec41ed10ce9.tar.gz
rust-92cd8ea96ad2a1da51863b7f089baec41ed10ce9.zip
Prohibit type parameter shadowing with a clunky hammer.
This is a [breaking-change].

Change

    impl<T> Foo<T> {
        fn bar<T>(...

to (for example)

    impl<T> Foo<T> {
        fn bar<U>(...

Per RFC 459.

Closes #19390.
Diffstat (limited to 'src/rustllvm/RustWrapper.cpp')
0 files changed, 0 insertions, 0 deletions