about summary refs log tree commit diff
path: root/src/test/compile-fail/missing-main.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-12/+0
2018-03-14Add backticks to `main` not found errors.Eric Huss-1/+1
2013-04-29rustc: Only accept main functions at the crate level. #4433Brian Anderson-1/+1
2013-04-10Change tests to use new error messageJames Miller-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2011-08-20ReformatBrian Anderson-1/+1
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-11rustc: Lowercase "main function not found" errorBrian Anderson-1/+1
2011-08-03Remove all xfail-stage0 directivesBrian Anderson-1/+0
While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0.
2011-07-27Reformat for new syntaxMarijn Haverbeke-2/+1
2011-07-13Make resolve and the typechecker check for a main fn of theTim Chevalier-0/+4
correct type This means if a non-library program leaves out the main program, the error gets caught earlier than link. Closes #626.