PageRenderTime 37ms CodeModel.GetById 6ms RepoModel.GetById 0ms app.codeStats 0ms

/src/test/compile-fail/redundant-link-args.rs

https://bitbucket.org/graydon/rust
Rust | 19 lines | 10 code | 3 blank | 6 comment | 0 complexity | 1d282e8f12ee3afda1705bbead11af94 MD5 | raw file
  1. // error-pattern:library 'm' already added: can't specify link_args.
  2. /* I think it should undefined to have multiple modules that link in the same
  3. library, but provide different link arguments. Unfortunately we don't track
  4. link_args by module -- they are just appended as discovered into the crate
  5. store -- but for now, it should be an error to provide link_args on a module
  6. that's already been included (with or without link_args). */
  7. #[link_name= "m"]
  8. #[link_args="-foo"] // this could have been elided.
  9. extern mod m1 {
  10. #[legacy_exports];
  11. }
  12. #[link_name= "m"]
  13. #[link_args="-bar"] // this is the actual error trigger.
  14. extern mod m2 {
  15. #[legacy_exports];
  16. }