]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/depmsg15815.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / depmsg15815.d
CommitLineData
b4c522fa
IB
1// REQUIRED_ARGS: -de
2/*
3TEST_OUTPUT:
4---
5fee5ec3 5fail_compilation/depmsg15815.d(23): Deprecation: template `depmsg15815.Alias(T)` is deprecated - message
b4c522fa
IB
6Foo
7---
8*/
9
10template Unqual(T)
11{
12 static if (is(T U == const U)) alias Unqual = U;
13 else alias Unqual = T;
14}
15
16deprecated("message")
17template Alias(T)
18{
19 alias Alias = Unqual!T;
20}
21
22struct Foo {}
23pragma(msg, Alias!(const(Foo)));