Skip to content

Commit c7030e9

Browse files
committed
Stabilize imported_main
1 parent 62415e2 commit c7030e9

17 files changed

+7
-51
lines changed

compiler/rustc_feature/src/accepted.rs

+2
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ declare_features! (
201201
(accepted, impl_header_lifetime_elision, "1.31.0", Some(15872)),
202202
/// Allows referencing `Self` and projections in impl-trait.
203203
(accepted, impl_trait_projections, "1.74.0", Some(103532)),
204+
/// Allows using imported `main` function
205+
(accepted, imported_main, "CURRENT_RUSTC_VERSION", Some(28937)),
204206
/// Allows using `a..=b` and `..=b` as inclusive range syntaxes.
205207
(accepted, inclusive_range_syntax, "1.26.0", Some(28237)),
206208
/// Allows inferring outlives requirements (RFC 2093).

compiler/rustc_feature/src/unstable.rs

-2
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,6 @@ declare_features! (
489489
(unstable, impl_trait_in_assoc_type, "1.70.0", Some(63063)),
490490
/// Allows `impl Trait` as output type in `Fn` traits in return position of functions.
491491
(unstable, impl_trait_in_fn_trait_return, "1.64.0", Some(99697)),
492-
/// Allows using imported `main` function
493-
(unstable, imported_main, "1.53.0", Some(28937)),
494492
/// Allows associated types in inherent impls.
495493
(incomplete, inherent_associated_types, "1.52.0", Some(8995)),
496494
/// Allow anonymous constants from an inline `const` block

compiler/rustc_passes/src/entry.rs

-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use rustc_hir::{ItemId, Node, CRATE_HIR_ID};
77
use rustc_middle::query::Providers;
88
use rustc_middle::ty::TyCtxt;
99
use rustc_session::config::{sigpipe, CrateType, EntryFnType};
10-
use rustc_session::parse::feature_err;
1110
use rustc_span::symbol::sym;
1211
use rustc_span::{Span, Symbol};
1312

@@ -132,16 +131,6 @@ fn configure_main(tcx: TyCtxt<'_>, visitor: &EntryContext<'_>) -> Option<(DefId,
132131
return None;
133132
}
134133

135-
if main_def.is_import && !tcx.features().imported_main {
136-
let span = main_def.span;
137-
feature_err(
138-
&tcx.sess,
139-
sym::imported_main,
140-
span,
141-
"using an imported function as entry point `main` is experimental",
142-
)
143-
.emit();
144-
}
145134
return Some((def_id, EntryFnType::Main { sigpipe: sigpipe(tcx, def_id) }));
146135
}
147136
no_main_err(tcx, visitor);
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
#![feature(imported_main)]
2-
31
use cargo_miri_test::main;

src/tools/miri/tests/pass/imported_main.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(imported_main)]
2-
31
pub mod foo {
42
pub fn mymain() {
53
println!("Hello, world!");

src/tools/miri/tests/pass/main_fn.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(imported_main)]
2-
31
mod foo {
42
pub(crate) fn bar() {}
53
}

tests/ui/entry-point/imported_main_conflict.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
#![feature(imported_main)]
2-
//~^ ERROR `main` is ambiguous
1+
//~ ERROR `main` is ambiguous
32
mod m1 { pub(crate) fn main() {} }
43
mod m2 { pub(crate) fn main() {} }
54

tests/ui/entry-point/imported_main_conflict.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ error[E0659]: `main` is ambiguous
22
|
33
= note: ambiguous because of multiple glob imports of a name in the same module
44
note: `main` could refer to the function imported here
5-
--> $DIR/imported_main_conflict.rs:6:5
5+
--> $DIR/imported_main_conflict.rs:5:5
66
|
77
LL | use m1::*;
88
| ^^^^^
99
= help: consider adding an explicit import of `main` to disambiguate
1010
note: `main` could also refer to the function imported here
11-
--> $DIR/imported_main_conflict.rs:7:5
11+
--> $DIR/imported_main_conflict.rs:6:5
1212
|
1313
LL | use m2::*;
1414
| ^^^^^

tests/ui/entry-point/imported_main_const_fn_item_type_forbidden.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(imported_main)]
21
#![feature(type_alias_impl_trait)]
32
#![allow(incomplete_features)]
43
pub mod foo {

tests/ui/entry-point/imported_main_const_fn_item_type_forbidden.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0601]: `main` function not found in crate `imported_main_const_fn_item_type_forbidden`
2-
--> $DIR/imported_main_const_fn_item_type_forbidden.rs:11:22
2+
--> $DIR/imported_main_const_fn_item_type_forbidden.rs:10:22
33
|
44
LL | use foo::BAR as main;
55
| ---------------- ^ consider adding a `main` function to `$DIR/imported_main_const_fn_item_type_forbidden.rs`

tests/ui/entry-point/imported_main_const_forbidden.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(imported_main)]
21
pub mod foo {
32
pub const BAR: usize = 42;
43
}

tests/ui/entry-point/imported_main_const_forbidden.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0601]: `main` function not found in crate `imported_main_const_forbidden`
2-
--> $DIR/imported_main_const_forbidden.rs:6:22
2+
--> $DIR/imported_main_const_forbidden.rs:5:22
33
|
44
LL | use foo::BAR as main;
55
| ---------------- ^ consider adding a `main` function to `$DIR/imported_main_const_forbidden.rs`
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//@ run-pass
22
//@ aux-build:main_functions.rs
33

4-
#![feature(imported_main)]
5-
64
extern crate main_functions;
75
pub use main_functions::boilerplate as main;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//@ aux-build:bad_main_functions.rs
22

3-
#![feature(imported_main)]
4-
53
extern crate bad_main_functions;
64
pub use bad_main_functions::boilerplate as main;

tests/ui/entry-point/imported_main_from_inner_mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//@ run-pass
2-
#![feature(imported_main)]
32

43
pub mod foo {
54
pub fn bar() {

tests/ui/feature-gates/feature-gate-imported_main.rs

-6
This file was deleted.

tests/ui/feature-gates/feature-gate-imported_main.stderr

-13
This file was deleted.

0 commit comments

Comments
 (0)