mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 21:51:03 +03:00
Move dmd files into compiler/
This commit is contained in:
parent
20bd0cacbd
commit
6374bb87b7
4579 changed files with 4 additions and 4 deletions
70
compiler/test/runnable_cxx/cpp11.d
Normal file
70
compiler/test/runnable_cxx/cpp11.d
Normal file
|
@ -0,0 +1,70 @@
|
|||
// DISABLED: win32
|
||||
// REQUIRED_ARGS: -extern-std=c++11
|
||||
// EXTRA_CPP_SOURCES: cpp11.cpp
|
||||
// CXXFLAGS(osx linux freebsd openbsd netbsd dragonflybsd solaris): -std=c++11
|
||||
|
||||
// Disabled on win32 because the compiler is too old
|
||||
|
||||
/****************************************/
|
||||
alias nullptr_t = typeof(null);
|
||||
|
||||
// Only run on OSX/Win64 because the compilers are too old
|
||||
// and nullptr_t gets substituted
|
||||
version (FreeBSD)
|
||||
version = IgnoreNullptrTest;
|
||||
version (linux)
|
||||
version = IgnoreNullptrTest;
|
||||
|
||||
version (IgnoreNullptrTest) { void test17() {} }
|
||||
else
|
||||
{
|
||||
extern (C++) void testnull(nullptr_t);
|
||||
extern (C++) void testnullnull(nullptr_t, nullptr_t);
|
||||
|
||||
void test17()
|
||||
{
|
||||
testnull(null);
|
||||
testnullnull(null, null);
|
||||
}
|
||||
}
|
||||
|
||||
/****************************************/
|
||||
// https://issues.dlang.org/show_bug.cgi?id=19658
|
||||
|
||||
enum i8_19658 : byte { a }
|
||||
enum u8_19658 : ubyte { a }
|
||||
enum i16_19658 : short { a }
|
||||
enum u16_19658 : ushort { a }
|
||||
enum i32_19658 : int { a }
|
||||
enum u32_19658 : uint { a }
|
||||
enum i64_19658 : long { a }
|
||||
enum u64_19658 : ulong { a }
|
||||
|
||||
extern(C++) void test19658_i8(i8_19658);
|
||||
extern(C++) void test19658_u8(u8_19658);
|
||||
extern(C++) void test19658_i16(i16_19658);
|
||||
extern(C++) void test19658_u16(u16_19658);
|
||||
extern(C++) void test19658_i32(i32_19658);
|
||||
extern(C++) void test19658_u32(u32_19658);
|
||||
extern(C++) void test19658_i64(i64_19658);
|
||||
extern(C++) void test19658_u64(u64_19658);
|
||||
|
||||
void test19658()
|
||||
{
|
||||
test19658_i8(i8_19658.a);
|
||||
test19658_u8(u8_19658.a);
|
||||
test19658_i16(i16_19658.a);
|
||||
test19658_u16(u16_19658.a);
|
||||
test19658_i32(i32_19658.a);
|
||||
test19658_u32(u32_19658.a);
|
||||
test19658_i64(i64_19658.a);
|
||||
test19658_u64(u64_19658.a);
|
||||
}
|
||||
|
||||
/****************************************/
|
||||
|
||||
void main()
|
||||
{
|
||||
test17();
|
||||
test19658();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue