Skip to content

Commit e3bd6b2

Browse files
Fix minicore, add tests based off of it
1 parent 7bd595d commit e3bd6b2

File tree

5 files changed

+97
-129
lines changed

5 files changed

+97
-129
lines changed

tests/ui/traits/const-traits/effects/minicore.rs tests/ui/traits/const-traits/effects/auxiliary/minicore.rs

+46-116
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
//@ known-bug: #110395
2-
//@ failure-status: 101
3-
//@ normalize-stderr-test: ".*note: .*\n\n" -> ""
4-
//@ normalize-stderr-test: "thread 'rustc' panicked.*:\n.*\n" -> ""
5-
//@ rustc-env:RUST_BACKTRACE=0
6-
// FIXME(const_trait_impl) check-pass
7-
//@ compile-flags: -Znext-solver
8-
9-
#![crate_type = "lib"]
1+
//@ compile-flags: -Znext-solver -Cpanic=abort
2+
//@ no-prefer-dynamic
3+
4+
#![crate_type = "rlib"]
105
#![feature(
116
no_core,
127
lang_items,
@@ -23,13 +18,17 @@
2318
#![no_core]
2419

2520
#[lang = "sized"]
26-
trait Sized {}
21+
pub trait Sized {}
2722
#[lang = "copy"]
28-
trait Copy {}
23+
pub trait Copy {}
24+
25+
impl Copy for bool {}
26+
impl Copy for u8 {}
27+
impl<T: ?Sized> Copy for &T {}
2928

3029
#[lang = "add"]
3130
#[const_trait]
32-
trait Add<Rhs = Self> {
31+
pub trait Add<Rhs = Self> {
3332
type Output;
3433

3534
fn add(self, rhs: Rhs) -> Self::Output;
@@ -50,10 +49,9 @@ const fn bar() {
5049
let x = 42_i32 + 43_i32;
5150
}
5251

53-
5452
#[lang = "Try"]
5553
#[const_trait]
56-
trait Try: FromResidual<Self::Residual> {
54+
pub trait Try: FromResidual<Self::Residual> {
5755
type Output;
5856
type Residual;
5957

@@ -64,9 +62,8 @@ trait Try: FromResidual<Self::Residual> {
6462
fn branch(self) -> ControlFlow<Self::Residual, Self::Output>;
6563
}
6664

67-
// FIXME
68-
// #[const_trait]
69-
trait FromResidual<R = <Self as /* FIXME: ~const */ Try>::Residual> {
65+
#[const_trait]
66+
pub trait FromResidual<R = <Self as Try>::Residual> {
7067
#[lang = "from_residual"]
7168
fn from_residual(residual: R) -> Self;
7269
}
@@ -81,102 +78,59 @@ enum ControlFlow<B, C = ()> {
8178
#[const_trait]
8279
#[lang = "fn"]
8380
#[rustc_paren_sugar]
84-
trait Fn<Args: Tuple>: ~const FnMut<Args> {
81+
pub trait Fn<Args: Tuple>: ~const FnMut<Args> {
8582
extern "rust-call" fn call(&self, args: Args) -> Self::Output;
8683
}
8784

8885
#[const_trait]
8986
#[lang = "fn_mut"]
9087
#[rustc_paren_sugar]
91-
trait FnMut<Args: Tuple>: ~const FnOnce<Args> {
88+
pub trait FnMut<Args: Tuple>: ~const FnOnce<Args> {
9289
extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output;
9390
}
9491

9592
#[const_trait]
9693
#[lang = "fn_once"]
9794
#[rustc_paren_sugar]
98-
trait FnOnce<Args: Tuple> {
95+
pub trait FnOnce<Args: Tuple> {
9996
#[lang = "fn_once_output"]
10097
type Output;
10198

10299
extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
103100
}
104101

105-
struct ConstFnMutClosure<CapturedData, Function> {
106-
data: CapturedData,
107-
func: Function,
108-
}
109-
110102
#[lang = "tuple_trait"]
111-
trait Tuple {}
112-
113-
macro_rules! impl_fn_mut_tuple {
114-
($($var:ident)*) => {
115-
impl<'a, $($var,)* ClosureArguments: Tuple, Function, ClosureReturnValue> const
116-
FnOnce<ClosureArguments> for ConstFnMutClosure<($(&'a mut $var),*), Function>
117-
where
118-
Function: ~const Fn(($(&mut $var),*), ClosureArguments) -> ClosureReturnValue,
119-
Function: ~const Destruct,
120-
{
121-
type Output = ClosureReturnValue;
122-
123-
extern "rust-call" fn call_once(mut self, args: ClosureArguments) -> Self::Output {
124-
self.call_mut(args)
125-
}
126-
}
127-
impl<'a, $($var,)* ClosureArguments: Tuple, Function, ClosureReturnValue> const
128-
FnMut<ClosureArguments> for ConstFnMutClosure<($(&'a mut $var),*), Function>
129-
where
130-
Function: ~const Fn(($(&mut $var),*), ClosureArguments)-> ClosureReturnValue,
131-
Function: ~const Destruct,
132-
{
133-
extern "rust-call" fn call_mut(&mut self, args: ClosureArguments) -> Self::Output {
134-
#[allow(non_snake_case)]
135-
let ($($var),*) = &mut self.data;
136-
(self.func)(($($var),*), args)
137-
}
138-
}
139-
};
140-
}
141-
//impl_fn_mut_tuple!(A);
142-
//impl_fn_mut_tuple!(A B);
143-
//impl_fn_mut_tuple!(A B C);
144-
//impl_fn_mut_tuple!(A B C D);
145-
//impl_fn_mut_tuple!(A B C D E);
103+
pub trait Tuple {}
146104

147105
#[lang = "legacy_receiver"]
148-
trait LegacyReceiver {}
106+
pub trait LegacyReceiver {}
149107

150108
impl<T: ?Sized> LegacyReceiver for &T {}
151109

152110
impl<T: ?Sized> LegacyReceiver for &mut T {}
153111

154112
#[lang = "destruct"]
155113
#[const_trait]
156-
trait Destruct {}
114+
pub trait Destruct {}
157115

158116
#[lang = "freeze"]
159-
unsafe auto trait Freeze {}
117+
pub unsafe auto trait Freeze {}
160118

161119
#[lang = "drop"]
162120
#[const_trait]
163-
trait Drop {
121+
pub trait Drop {
164122
fn drop(&mut self);
165123
}
166124

167-
/*
168125
#[const_trait]
169-
trait Residual<O> {
126+
pub trait Residual<O> {
170127
type TryType: ~const Try<Output = O, Residual = Self> + Try<Output = O, Residual = Self>;
171128
}
172-
*/
173129

174130
const fn size_of<T>() -> usize {
175131
42
176132
}
177133

178-
impl Copy for u8 {}
179-
180134
impl usize {
181135
#[rustc_allow_incoherent_impl]
182136
const fn repeat_u8(x: u8) -> usize {
@@ -197,15 +151,14 @@ fn panic_fmt() {}
197151

198152
#[lang = "index"]
199153
#[const_trait]
200-
trait Index<Idx: ?Sized> {
154+
pub trait Index<Idx: ?Sized> {
201155
type Output: ?Sized;
202156

203157
fn index(&self, index: Idx) -> &Self::Output;
204158
}
205159

206-
207160
#[const_trait]
208-
unsafe trait SliceIndex<T: ?Sized> {
161+
pub unsafe trait SliceIndex<T: ?Sized> {
209162
type Output: ?Sized;
210163
fn index(self, slice: &T) -> &Self::Output;
211164
}
@@ -221,51 +174,45 @@ where
221174
index.index(self)
222175
}
223176
}
224-
/* FIXME
177+
225178
impl<T, I, const N: usize> const Index<I> for [T; N]
226179
where
227180
[T]: ~const Index<I>,
228181
{
229182
type Output = <[T] as Index<I>>::Output;
230183

231184
#[inline]
232-
// FIXME: make `Self::Output` act like `<Self as ~const Index<I>>::Output`
233185
fn index(&self, index: I) -> &<[T] as Index<I>>::Output {
234186
Index::index(self as &[T], index)
235187
}
236188
}
237-
*/
238189

239190
#[lang = "unsize"]
240-
trait Unsize<T: ?Sized> {
241-
}
191+
pub trait Unsize<T: ?Sized> {}
242192

243193
#[lang = "coerce_unsized"]
244-
trait CoerceUnsized<T: ?Sized> {
245-
}
194+
pub trait CoerceUnsized<T: ?Sized> {}
246195

247196
impl<'a, 'b: 'a, T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<&'a U> for &'b T {}
248197

249-
250198
#[lang = "deref"]
251-
// #[const_trait] FIXME
252-
trait Deref {
199+
#[const_trait]
200+
pub trait Deref {
253201
#[lang = "deref_target"]
254202
type Target: ?Sized;
255203

256204
fn deref(&self) -> &Self::Target;
257205
}
258206

259-
260-
impl<T: ?Sized> /* const */ Deref for &T {
207+
impl<T: ?Sized> const Deref for &T {
261208
type Target = T;
262209

263210
fn deref(&self) -> &T {
264211
*self
265212
}
266213
}
267214

268-
impl<T: ?Sized> /* const */ Deref for &mut T {
215+
impl<T: ?Sized> const Deref for &mut T {
269216
type Target = T;
270217

271218
fn deref(&self) -> &T {
@@ -298,7 +245,6 @@ impl<T> Option<T> {
298245

299246
use Option::*;
300247

301-
/*
302248
const fn as_deref<T>(opt: &Option<T>) -> Option<&T::Target>
303249
where
304250
T: ~const Deref,
@@ -308,15 +254,14 @@ where
308254
Option::None => Option::None,
309255
}
310256
}
311-
*/
312257

313258
#[const_trait]
314-
trait Into<T>: Sized {
259+
pub trait Into<T>: Sized {
315260
fn into(self) -> T;
316261
}
317262

318263
#[const_trait]
319-
trait From<T>: Sized {
264+
pub trait From<T>: Sized {
320265
fn from(value: T) -> Self;
321266
}
322267

@@ -351,7 +296,7 @@ fn from_str(s: &str) -> Result<bool, ()> {
351296

352297
#[lang = "eq"]
353298
#[const_trait]
354-
trait PartialEq<Rhs: ?Sized = Self> {
299+
pub trait PartialEq<Rhs: ?Sized = Self> {
355300
fn eq(&self, other: &Rhs) -> bool;
356301
fn ne(&self, other: &Rhs) -> bool {
357302
!self.eq(other)
@@ -373,10 +318,9 @@ impl PartialEq for str {
373318
}
374319
}
375320

376-
377321
#[lang = "not"]
378322
#[const_trait]
379-
trait Not {
323+
pub trait Not {
380324
type Output;
381325
fn not(self) -> Self::Output;
382326
}
@@ -388,9 +332,6 @@ impl const Not for bool {
388332
}
389333
}
390334

391-
impl Copy for bool {}
392-
impl<'a> Copy for &'a str {}
393-
394335
#[lang = "pin"]
395336
#[fundamental]
396337
#[repr(transparent)]
@@ -411,23 +352,21 @@ impl<'a, T: ?Sized> Pin<&'a T> {
411352
}
412353
}
413354

414-
415355
impl<P: Deref> Pin<P> {
416-
/* const */ fn as_ref(&self) -> Pin<&P::Target>
356+
const fn as_ref(&self) -> Pin<&P::Target>
417357
where
418-
P: /* ~const */ Deref,
358+
P: ~const Deref,
419359
{
420360
unsafe { Pin::new_unchecked(&*self.pointer) }
421361
}
422362
}
423363

424-
425364
impl<'a, T: ?Sized> Pin<&'a mut T> {
426365
const unsafe fn get_unchecked_mut(self) -> &'a mut T {
427366
self.pointer
428367
}
429368
}
430-
/* FIXME lol
369+
431370
impl<T> Option<T> {
432371
const fn as_pin_ref(self: Pin<&Self>) -> Option<Pin<&T>> {
433372
match Pin::get_ref(self).as_ref() {
@@ -445,16 +384,15 @@ impl<T> Option<T> {
445384
}
446385
}
447386
}
448-
*/
449387

450-
impl<P: /* ~const */ Deref> /* const */ Deref for Pin<P> {
388+
impl<P: ~const Deref> const Deref for Pin<P> {
451389
type Target = P::Target;
452390
fn deref(&self) -> &P::Target {
453391
Pin::get_ref(Pin::as_ref(self))
454392
}
455393
}
456394

457-
impl<T> /* const */ Deref for Option<T> {
395+
impl<T> const Deref for Option<T> {
458396
type Target = T;
459397
fn deref(&self) -> &T {
460398
loop {}
@@ -506,23 +444,22 @@ impl<T: ?Sized> Deref for Ref<'_, T> {
506444

507445
#[lang = "clone"]
508446
#[rustc_trivial_field_reads]
509-
#[const_trait]
510-
trait Clone: Sized {
447+
// FIXME: #[const_trait]
448+
pub trait Clone: Sized {
511449
fn clone(&self) -> Self;
512450
fn clone_from(&mut self, source: &Self)
513451
where
514-
Self: ~const Destruct,
452+
// FIXME: Self: ~const Destruct,
515453
{
516454
*self = source.clone()
517455
}
518456
}
519457

520458
#[lang = "structural_peq"]
521-
trait StructuralPartialEq {}
459+
pub trait StructuralPartialEq {}
522460

523-
const fn drop<T: ~const Destruct>(_: T) {}
461+
// FIXME: const fn drop<T: ~const Destruct>(_: T) {}
524462

525-
#[rustc_const_stable_indirect]
526463
#[rustc_intrinsic_must_be_overridden]
527464
#[rustc_intrinsic]
528465
const fn const_eval_select<ARG: Tuple, F, G, RET>(
@@ -536,10 +473,3 @@ where
536473
{
537474
loop {}
538475
}
539-
540-
fn test_const_eval_select() {
541-
const fn const_fn() {}
542-
fn rt_fn() {}
543-
544-
const_eval_select((), const_fn, rt_fn);
545-
}

0 commit comments

Comments
 (0)