mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
35 lines
757 B
D
35 lines
757 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag14145.d(14): Error: no property `i` for `_` of type `diag14145.main.Capture!(i)`
|
|
fail_compilation/diag14145.d(33): Error: expression `*this.ptr` of type `shared(int)` is not implicitly convertible to return type `ref int`
|
|
fail_compilation/diag14145.d(14): Error: template instance `diag14145.main.Capture!(i).Capture.opDispatch!"i"` error instantiating
|
|
---
|
|
*/
|
|
|
|
int main()
|
|
{
|
|
int i;
|
|
auto _ = capture!i;
|
|
_.i;
|
|
_.opDispatch!"i";
|
|
return 0;
|
|
}
|
|
|
|
auto capture(alias c)()
|
|
{
|
|
return Capture!c(c);
|
|
}
|
|
|
|
struct Capture(alias c)
|
|
{
|
|
shared typeof(c)* ptr;
|
|
this(ref typeof(c) _c)
|
|
{
|
|
ptr = cast(shared)&c;
|
|
}
|
|
ref shared typeof(c) opDispatch(string s)()
|
|
{
|
|
return *ptr;
|
|
}
|
|
}
|