Skip to content

Commit

Permalink
Another attempt to fix #140
Browse files Browse the repository at this point in the history
  • Loading branch information
pamidur committed Dec 30, 2020
1 parent 2df1bb5 commit 118e32e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion external/FluentIL
17 changes: 17 additions & 0 deletions tests/AspectInjector.Tests.Runtime/Issues/0140.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ public void Before()
}
}

[Aspect(Scope.PerInstance)]
[Injection(typeof(TestAspect))]
public class TestAspect2 : Attribute
{
[Advice(Kind.Before)]
public void Before()
{

}
}

[TestAspect]
[TestAspect2]
internal class ArgumentsTests_GenericClassConstructorChainTargetImpl : ArgumentsTests_GenericClassConstructorChainTarget<string>
{
}

[TestAspect]
internal abstract class ArgumentsTests_GenericClassConstructorChainTarget<T> where T : class
{
Expand Down

0 comments on commit 118e32e

Please sign in to comment.