mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:10:13 +01:00
Make min_prelude parts include what they use, and remove the inclusions which were for indirect uses from the main min_prelude files.
14 lines
521 B
Plaintext
14 lines
521 B
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// INCLUDE-FILE: toolchain/testing/testdata/min_prelude/parts/int.carbon
|
|
// EXTRA-ARGS: --custom-core --exclude-dump-file-prefix=min_prelude/
|
|
|
|
// --- min_prelude/int.carbon
|
|
|
|
// A minimal prelude for testing using `Int` or `i32`; required for arrays.
|
|
package Core library "prelude";
|
|
|
|
export import library "prelude/parts/int";
|