about summary refs log tree commit diff
path: root/src/test/run-pass/attr-start.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-1/+1
Now that support has been removed, all lingering use cases are renamed.
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-01-16syntax: Feature gate #[start] and #[main]Alex Crichton-0/+1
These two attributes are used to change the entry point into a Rust program, but for now they're being put behind feature gates until we have a chance to think about them a little more. The #[start] attribute specifically may have its signature changed. This is a breaking change to due the usage of these attributes generating errors by default now. If your crate is using these attributes, add this to your crate root: #![feature(start)] // if you're using the #[start] attribute #![feature(main)] // if you're using the #[main] attribute cc #20064
2014-06-28Rename all raw pointers as necessaryAlex Crichton-1/+1
2014-04-06Remove check-fast. Closes #4193, #8844, #6330, #7416Brian Anderson-1/+0
2014-02-11Change `xfail` directives in compiletests to `ignore`, closes #11363Florian Hahn-2/+2
2013-09-23Register new snapshotsAlex Crichton-6/+0
2013-09-18tests: Remove crate_map from start.Luqman Aden-0/+6
2013-08-17Fix warnings it testsErick Tryzelaar-1/+1
2013-04-12Added xfail-fast to test so the windows buildbot doesn't chokeJames Miller-0/+2
2013-04-10Add #[start] attribute to define a new entry point functionJames Miller-0/+14