uint.carbon 661 B

12345678910111213141516
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/parts/int.carbon
  6. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/parts/uint.carbon
  7. // EXTRA-ARGS: --custom-core --exclude-dump-file-prefix=min_prelude/
  8. // --- min_prelude/uint.carbon
  9. // A minimal prelude for testing using `UInt` or `u32`, and includes `Int` and
  10. // `i32` as well.
  11. package Core library "prelude";
  12. export import library "prelude/parts/int";
  13. export import library "prelude/parts/uint";