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" ]
10
5
#![ feature(
11
6
no_core,
12
7
lang_items,
23
18
#![ no_core]
24
19
25
20
#[ lang = "sized" ]
26
- trait Sized { }
21
+ pub trait Sized { }
27
22
#[ 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 { }
29
28
30
29
#[ lang = "add" ]
31
30
#[ const_trait]
32
- trait Add < Rhs = Self > {
31
+ pub trait Add < Rhs = Self > {
33
32
type Output ;
34
33
35
34
fn add ( self , rhs : Rhs ) -> Self :: Output ;
@@ -50,10 +49,9 @@ const fn bar() {
50
49
let x = 42_i32 + 43_i32 ;
51
50
}
52
51
53
-
54
52
#[ lang = "Try" ]
55
53
#[ const_trait]
56
- trait Try : FromResidual < Self :: Residual > {
54
+ pub trait Try : FromResidual < Self :: Residual > {
57
55
type Output ;
58
56
type Residual ;
59
57
@@ -64,9 +62,8 @@ trait Try: FromResidual<Self::Residual> {
64
62
fn branch ( self ) -> ControlFlow < Self :: Residual , Self :: Output > ;
65
63
}
66
64
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 > {
70
67
#[ lang = "from_residual" ]
71
68
fn from_residual ( residual : R ) -> Self ;
72
69
}
@@ -81,102 +78,59 @@ enum ControlFlow<B, C = ()> {
81
78
#[ const_trait]
82
79
#[ lang = "fn" ]
83
80
#[ rustc_paren_sugar]
84
- trait Fn < Args : Tuple > : ~const FnMut < Args > {
81
+ pub trait Fn < Args : Tuple > : ~const FnMut < Args > {
85
82
extern "rust-call" fn call ( & self , args : Args ) -> Self :: Output ;
86
83
}
87
84
88
85
#[ const_trait]
89
86
#[ lang = "fn_mut" ]
90
87
#[ rustc_paren_sugar]
91
- trait FnMut < Args : Tuple > : ~const FnOnce < Args > {
88
+ pub trait FnMut < Args : Tuple > : ~const FnOnce < Args > {
92
89
extern "rust-call" fn call_mut ( & mut self , args : Args ) -> Self :: Output ;
93
90
}
94
91
95
92
#[ const_trait]
96
93
#[ lang = "fn_once" ]
97
94
#[ rustc_paren_sugar]
98
- trait FnOnce < Args : Tuple > {
95
+ pub trait FnOnce < Args : Tuple > {
99
96
#[ lang = "fn_once_output" ]
100
97
type Output ;
101
98
102
99
extern "rust-call" fn call_once ( self , args : Args ) -> Self :: Output ;
103
100
}
104
101
105
- struct ConstFnMutClosure < CapturedData , Function > {
106
- data : CapturedData ,
107
- func : Function ,
108
- }
109
-
110
102
#[ 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 { }
146
104
147
105
#[ lang = "legacy_receiver" ]
148
- trait LegacyReceiver { }
106
+ pub trait LegacyReceiver { }
149
107
150
108
impl < T : ?Sized > LegacyReceiver for & T { }
151
109
152
110
impl < T : ?Sized > LegacyReceiver for & mut T { }
153
111
154
112
#[ lang = "destruct" ]
155
113
#[ const_trait]
156
- trait Destruct { }
114
+ pub trait Destruct { }
157
115
158
116
#[ lang = "freeze" ]
159
- unsafe auto trait Freeze { }
117
+ pub unsafe auto trait Freeze { }
160
118
161
119
#[ lang = "drop" ]
162
120
#[ const_trait]
163
- trait Drop {
121
+ pub trait Drop {
164
122
fn drop ( & mut self ) ;
165
123
}
166
124
167
- /*
168
125
#[ const_trait]
169
- trait Residual<O> {
126
+ pub trait Residual < O > {
170
127
type TryType : ~const Try < Output = O , Residual = Self > + Try < Output = O , Residual = Self > ;
171
128
}
172
- */
173
129
174
130
const fn size_of < T > ( ) -> usize {
175
131
42
176
132
}
177
133
178
- impl Copy for u8 { }
179
-
180
134
impl usize {
181
135
#[ rustc_allow_incoherent_impl]
182
136
const fn repeat_u8 ( x : u8 ) -> usize {
@@ -197,15 +151,14 @@ fn panic_fmt() {}
197
151
198
152
#[ lang = "index" ]
199
153
#[ const_trait]
200
- trait Index < Idx : ?Sized > {
154
+ pub trait Index < Idx : ?Sized > {
201
155
type Output : ?Sized ;
202
156
203
157
fn index ( & self , index : Idx ) -> & Self :: Output ;
204
158
}
205
159
206
-
207
160
#[ const_trait]
208
- unsafe trait SliceIndex < T : ?Sized > {
161
+ pub unsafe trait SliceIndex < T : ?Sized > {
209
162
type Output : ?Sized ;
210
163
fn index ( self , slice : & T ) -> & Self :: Output ;
211
164
}
@@ -221,51 +174,45 @@ where
221
174
index. index ( self )
222
175
}
223
176
}
224
- /* FIXME
177
+
225
178
impl < T , I , const N : usize > const Index < I > for [ T ; N ]
226
179
where
227
180
[ T ] : ~const Index < I > ,
228
181
{
229
182
type Output = <[ T ] as Index < I > >:: Output ;
230
183
231
184
#[ inline]
232
- // FIXME: make `Self::Output` act like `<Self as ~const Index<I>>::Output`
233
185
fn index ( & self , index : I ) -> & <[ T ] as Index < I > >:: Output {
234
186
Index :: index ( self as & [ T ] , index)
235
187
}
236
188
}
237
- */
238
189
239
190
#[ lang = "unsize" ]
240
- trait Unsize < T : ?Sized > {
241
- }
191
+ pub trait Unsize < T : ?Sized > { }
242
192
243
193
#[ lang = "coerce_unsized" ]
244
- trait CoerceUnsized < T : ?Sized > {
245
- }
194
+ pub trait CoerceUnsized < T : ?Sized > { }
246
195
247
196
impl < ' a , ' b : ' a , T : ?Sized + Unsize < U > , U : ?Sized > CoerceUnsized < & ' a U > for & ' b T { }
248
197
249
-
250
198
#[ lang = "deref" ]
251
- // #[const_trait] FIXME
252
- trait Deref {
199
+ #[ const_trait]
200
+ pub trait Deref {
253
201
#[ lang = "deref_target" ]
254
202
type Target : ?Sized ;
255
203
256
204
fn deref ( & self ) -> & Self :: Target ;
257
205
}
258
206
259
-
260
- impl < T : ?Sized > /* const */ Deref for & T {
207
+ impl < T : ?Sized > const Deref for & T {
261
208
type Target = T ;
262
209
263
210
fn deref ( & self ) -> & T {
264
211
* self
265
212
}
266
213
}
267
214
268
- impl < T : ?Sized > /* const */ Deref for & mut T {
215
+ impl < T : ?Sized > const Deref for & mut T {
269
216
type Target = T ;
270
217
271
218
fn deref ( & self ) -> & T {
@@ -298,7 +245,6 @@ impl<T> Option<T> {
298
245
299
246
use Option :: * ;
300
247
301
- /*
302
248
const fn as_deref < T > ( opt : & Option < T > ) -> Option < & T :: Target >
303
249
where
304
250
T : ~const Deref ,
@@ -308,15 +254,14 @@ where
308
254
Option :: None => Option :: None ,
309
255
}
310
256
}
311
- */
312
257
313
258
#[ const_trait]
314
- trait Into < T > : Sized {
259
+ pub trait Into < T > : Sized {
315
260
fn into ( self ) -> T ;
316
261
}
317
262
318
263
#[ const_trait]
319
- trait From < T > : Sized {
264
+ pub trait From < T > : Sized {
320
265
fn from ( value : T ) -> Self ;
321
266
}
322
267
@@ -351,7 +296,7 @@ fn from_str(s: &str) -> Result<bool, ()> {
351
296
352
297
#[ lang = "eq" ]
353
298
#[ const_trait]
354
- trait PartialEq < Rhs : ?Sized = Self > {
299
+ pub trait PartialEq < Rhs : ?Sized = Self > {
355
300
fn eq ( & self , other : & Rhs ) -> bool ;
356
301
fn ne ( & self , other : & Rhs ) -> bool {
357
302
!self . eq ( other)
@@ -373,10 +318,9 @@ impl PartialEq for str {
373
318
}
374
319
}
375
320
376
-
377
321
#[ lang = "not" ]
378
322
#[ const_trait]
379
- trait Not {
323
+ pub trait Not {
380
324
type Output ;
381
325
fn not ( self ) -> Self :: Output ;
382
326
}
@@ -388,9 +332,6 @@ impl const Not for bool {
388
332
}
389
333
}
390
334
391
- impl Copy for bool { }
392
- impl < ' a > Copy for & ' a str { }
393
-
394
335
#[ lang = "pin" ]
395
336
#[ fundamental]
396
337
#[ repr( transparent) ]
@@ -411,23 +352,21 @@ impl<'a, T: ?Sized> Pin<&'a T> {
411
352
}
412
353
}
413
354
414
-
415
355
impl < P : Deref > Pin < P > {
416
- /* const */ fn as_ref ( & self ) -> Pin < & P :: Target >
356
+ const fn as_ref ( & self ) -> Pin < & P :: Target >
417
357
where
418
- P : /* ~const */ Deref ,
358
+ P : ~const Deref ,
419
359
{
420
360
unsafe { Pin :: new_unchecked ( & * self . pointer ) }
421
361
}
422
362
}
423
363
424
-
425
364
impl < ' a , T : ?Sized > Pin < & ' a mut T > {
426
365
const unsafe fn get_unchecked_mut ( self ) -> & ' a mut T {
427
366
self . pointer
428
367
}
429
368
}
430
- /* FIXME lol
369
+
431
370
impl < T > Option < T > {
432
371
const fn as_pin_ref ( self : Pin < & Self > ) -> Option < Pin < & T > > {
433
372
match Pin :: get_ref ( self ) . as_ref ( ) {
@@ -445,16 +384,15 @@ impl<T> Option<T> {
445
384
}
446
385
}
447
386
}
448
- */
449
387
450
- impl < P : /* ~const */ Deref > /* const */ Deref for Pin < P > {
388
+ impl < P : ~const Deref > const Deref for Pin < P > {
451
389
type Target = P :: Target ;
452
390
fn deref ( & self ) -> & P :: Target {
453
391
Pin :: get_ref ( Pin :: as_ref ( self ) )
454
392
}
455
393
}
456
394
457
- impl < T > /* const */ Deref for Option < T > {
395
+ impl < T > const Deref for Option < T > {
458
396
type Target = T ;
459
397
fn deref ( & self ) -> & T {
460
398
loop { }
@@ -506,23 +444,22 @@ impl<T: ?Sized> Deref for Ref<'_, T> {
506
444
507
445
#[ lang = "clone" ]
508
446
#[ rustc_trivial_field_reads]
509
- #[ const_trait]
510
- trait Clone : Sized {
447
+ // FIXME: #[const_trait]
448
+ pub trait Clone : Sized {
511
449
fn clone ( & self ) -> Self ;
512
450
fn clone_from ( & mut self , source : & Self )
513
451
where
514
- Self : ~const Destruct ,
452
+ // FIXME: Self: ~const Destruct,
515
453
{
516
454
* self = source. clone ( )
517
455
}
518
456
}
519
457
520
458
#[ lang = "structural_peq" ]
521
- trait StructuralPartialEq { }
459
+ pub trait StructuralPartialEq { }
522
460
523
- const fn drop < T : ~const Destruct > ( _: T ) { }
461
+ // FIXME: const fn drop<T: ~const Destruct>(_: T) {}
524
462
525
- #[ rustc_const_stable_indirect]
526
463
#[ rustc_intrinsic_must_be_overridden]
527
464
#[ rustc_intrinsic]
528
465
const fn const_eval_select < ARG : Tuple , F , G , RET > (
@@ -536,10 +473,3 @@ where
536
473
{
537
474
loop { }
538
475
}
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