about summary refs log tree commit diff
path: root/src/test/run-pass/attr-before-view-item2.rs
AgeCommit message (Collapse)AuthorLines
2019-06-08Move some run-pass attribute tests to uiVadim Petrochenkov-12/+0
2019-06-08Introduce `#[rustc_dummy]` attribute and use it in testsVadim Petrochenkov-6/+5
Unlike other built-in attributes, this attribute accepts any input
2018-12-25Remove licensesMark Rousskov-10/+0
2018-09-21Allow various lints as part of ui-ifying `src/test/run-pass` suite.Felix S. Klock II-0/+2
2016-08-22Fix compiletest so it respects warnings for run-pass.Ahmed Charles-2/+0
2015-03-23rustdoc: Replace no-pretty-expanded with pretty-expandedBrian Anderson-0/+2
Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work.
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-1/+1
2015-02-16Add custom_attribute gate to tests which need themManish Goregaokar-0/+2
2014-03-14extra: Put the nail in the coffin, delete libextraAlex Crichton-1/+1
This commit shreds all remnants of libextra from the compiler and standard distribution. Two modules, c_vec/tempfile, were moved into libstd after some cleanup, and the other modules were moved to separate crates as seen fit. Closes #8784 Closes #12413 Closes #12576
2014-02-14extern mod => extern crateAlex Crichton-1/+1
This was previously implemented, and it just needed a snapshot to go through
2013-05-22test: Update tests to use the new syntax.Patrick Walton-1/+1
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2013-01-30test: Remove export from the tests, language, and libraries. rs=deexportingPatrick Walton-3/+2
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-05-08Support visibility modifiers and attributes on view itemsMarijn Haverbeke-0/+9
Issue #1893 Tangentially, issue #2357